From 59c2ff3e5084debc615dd433eef0151d93f8b83b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 20:54:40 +0000 Subject: [PATCH 1/4] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.6 → v0.6.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.5.6...v0.6.3) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d727a4bc..147e9446 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -34,7 +34,7 @@ repos: - id: add-trailing-comma - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.6 + rev: v0.6.3 hooks: - id: ruff From ffc7adbcdf6e46aa37059174bcf25eebc951dcbf Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:43:32 -0400 Subject: [PATCH 2/4] adding new notebook for CKAN API query --- .../2024-09-17-CKAN_API_Query.ipynb | 2362 +++++++++++++++++ 1 file changed, 2362 insertions(+) create mode 100644 jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb diff --git a/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb b/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb new file mode 100644 index 00000000..7ae04e61 --- /dev/null +++ b/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb @@ -0,0 +1,2362 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "colab_type": "text", + "id": "view-in-github" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Dl6UQcydrdtx" + }, + "source": [ + "Search [IOOS Data Catalog](https://data.ioos.us/) for CF standard names that contain `oxygen` and `sea_water`." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "AIX-_9o2P07V", + "outputId": "09d2de4a-1f34-4518-c51f-487e14b55b66" + }, + "outputs": [], + "source": [ + "# For Google Colab, uncomment the lines below\n", + "\n", + "import subprocess\n", + "import sys\n", + "\n", + "COLAB = \"google.colab\" in sys.modules\n", + "\n", + "\n", + "def _install(package):\n", + " if COLAB:\n", + " ans = input(f\"Install { package }? [y/n]:\")\n", + " if ans.lower() in [\"y\", \"yes\"]:\n", + " subprocess.check_call(\n", + " [sys.executable, \"-m\", \"pip\", \"install\", \"--quiet\", package]\n", + " )\n", + " print(f\"{ package } installed!\")\n", + "\n", + "\n", + "def _colab_install_missing_deps(deps):\n", + " import importlib\n", + "\n", + " for dep in deps:\n", + " if importlib.util.find_spec(dep) is None:\n", + " if dep == \"iris\":\n", + " dep = \"scitools-iris\"\n", + " _install(dep)\n", + "\n", + "\n", + "deps = [\"ckanapi\", \"geopandas\"]\n", + "\n", + "\n", + "_colab_install_missing_deps(deps)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Fz_XVNHerUus" + }, + "source": [ + "## Build CKAN API query base.\n", + "\n", + "Uses https://github.com/ckan/ckanapi" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "8ilaNW-tPtVy", + "outputId": "9bf22340-1404-48e6-b3e8-fdc2cd6a3d23" + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from ckanapi import RemoteCKAN\n", + "ua = 'ckanapiioos/1.0 (+https://ioos.us/)'\n", + "\n", + "#ioos_catalog = RemoteCKAN('https://data.ioos.us', user_agent=ua, get_only=True)\n", + "ioos_catalog = RemoteCKAN('https://data.ioos.us', user_agent=ua)\n", + "ioos_catalog" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "9DISgdWPrRd0" + }, + "source": [ + "## What organizations are in the catalog?\n", + "\n", + "Tell me what organizations are there." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "O4joF0z8Px-m", + "outputId": "95a91429-b9aa-4350-b67c-6d0f07e4a12c" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['aoos', 'caricoos', 'cdip', 'cencoos', 'comt', 'gcoos', 'glider-dac', 'glos', 'hf-radar-dac', 'ioos', 'maracoos', 'nanoos', 'neracoos', 'noaa-co-ops', 'noaa-ndbc', 'oceansites', 'pacioos', 'sccoos', 'secoora', 'unidata', 'usgs', 'us-navy']\n" + ] + } + ], + "source": [ + "orgs = ioos_catalog.action.organization_list()\n", + "print(orgs)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "yN2ELDQZrNah" + }, + "source": [ + "## How many datasets are we searching across?\n", + "\n", + "Grab all the datasets available." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "_ov9sSwpP8VP", + "outputId": "4d06f0ca-0ad6-4260-ecd5-52f8019652be" + }, + "outputs": [ + { + "data": { + "text/plain": [ + "43058" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#datasets = ioos_catalog.action.package_search(fq='+cf_standard_names:mass_concentration_of_oxygen_in_sea_water', rows=50)\n", + "datasets = ioos_catalog.action.package_search()\n", + "datasets['count']" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "rkgC5oLfmGB1" + }, + "source": [ + "## Grab the most recent applicable CF standard names\n", + "\n", + "Collect CF standard names that contain `oxygen` and `sea_water` from the CF standard name list." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 394 + }, + "id": "enKjucgnXivM", + "outputId": "9d2c266f-755a-42dc-9b5e-40607552c56f" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
iddescription
469depth_at_shallowest_local_minimum_in_vertical_...Depth is the vertical distance below the surfa...
624fractional_saturation_of_oxygen_in_sea_waterFractional saturation is the ratio of some mea...
1357mass_concentration_of_oxygen_in_sea_waterMass concentration means mass per unit volume ...
1725mole_concentration_of_dissolved_molecular_oxyg...Mole concentration means number of moles per u...
1726mole_concentration_of_dissolved_molecular_oxyg...\"Mole concentration at saturation\" means the m...
1727mole_concentration_of_dissolved_molecular_oxyg...Mole concentration means number of moles per u...
1825mole_concentration_of_preformed_dissolved_mole...\"Mole concentration\" means the number of moles...
1996moles_of_oxygen_per_unit_mass_in_sea_watermoles_of_X_per_unit_mass_inY is also called \"m...
3203surface_molecular_oxygen_partial_pressure_diff...The surface called \"surface\" means the lower b...
3700temperature_of_sensor_for_oxygen_in_sea_waterTemperature_of_sensor_for_oxygen_in_sea_water ...
4776volume_fraction_of_oxygen_in_sea_water\"Volume fraction\" is used in the construction ...
4780volume_mixing_ratio_of_oxygen_at_stp_in_sea_water\"ratio_of_X_to_Y\" means X/Y. \"stp\" means stand...
\n", + "
" + ], + "text/plain": [ + " id \\\n", + "469 depth_at_shallowest_local_minimum_in_vertical_... \n", + "624 fractional_saturation_of_oxygen_in_sea_water \n", + "1357 mass_concentration_of_oxygen_in_sea_water \n", + "1725 mole_concentration_of_dissolved_molecular_oxyg... \n", + "1726 mole_concentration_of_dissolved_molecular_oxyg... \n", + "1727 mole_concentration_of_dissolved_molecular_oxyg... \n", + "1825 mole_concentration_of_preformed_dissolved_mole... \n", + "1996 moles_of_oxygen_per_unit_mass_in_sea_water \n", + "3203 surface_molecular_oxygen_partial_pressure_diff... \n", + "3700 temperature_of_sensor_for_oxygen_in_sea_water \n", + "4776 volume_fraction_of_oxygen_in_sea_water \n", + "4780 volume_mixing_ratio_of_oxygen_at_stp_in_sea_water \n", + "\n", + " description \n", + "469 Depth is the vertical distance below the surfa... \n", + "624 Fractional saturation is the ratio of some mea... \n", + "1357 Mass concentration means mass per unit volume ... \n", + "1725 Mole concentration means number of moles per u... \n", + "1726 \"Mole concentration at saturation\" means the m... \n", + "1727 Mole concentration means number of moles per u... \n", + "1825 \"Mole concentration\" means the number of moles... \n", + "1996 moles_of_X_per_unit_mass_inY is also called \"m... \n", + "3203 The surface called \"surface\" means the lower b... \n", + "3700 Temperature_of_sensor_for_oxygen_in_sea_water ... \n", + "4776 \"Volume fraction\" is used in the construction ... \n", + "4780 \"ratio_of_X_to_Y\" means X/Y. \"stp\" means stand... " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "url = \"https://cfconventions.org/Data/cf-standard-names/current/src/cf-standard-name-table.xml\"\n", + "\n", + "df = pd.read_xml(url, xpath=\"entry\")\n", + "\n", + "std_names = df.loc[(df['id'].str.contains('oxygen') & df['id'].str.contains('sea_water'))]\n", + "\n", + "std_names[['id','description']]" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "G-KxN2RlpLOu" + }, + "source": [ + "## Search across IOOS Data Catalog\n", + "\n", + "Search IOOS Data Catalog for CF standard names that match those above." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "xI6wTAPqXnt1", + "outputId": "4101e59a-dd91-45d4-95d9-0b8821b0013d" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "depth_at_shallowest_local_minimum_in_vertical_profile_of_mole_concentration_of_dissolved_molecular_oxygen_in_sea_water\n", + "num_results: 0, result_count: 0\n", + "num_results: 0, result_count: 0\n", + "fractional_saturation_of_oxygen_in_sea_water\n", + "num_results: 987, result_count: 0\n", + "num_results: 987, result_count: 500\n", + "num_results: 987, result_count: 1000\n", + "mass_concentration_of_oxygen_in_sea_water\n", + "num_results: 2735, result_count: 0\n", + "num_results: 2735, result_count: 500\n", + "num_results: 2735, result_count: 1000\n", + "num_results: 2735, result_count: 1500\n", + "num_results: 2735, result_count: 2000\n", + "num_results: 2735, result_count: 2500\n", + "num_results: 2735, result_count: 3000\n", + "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water\n", + "num_results: 300, result_count: 0\n", + "num_results: 300, result_count: 300\n", + "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_saturation\n", + "num_results: 0, result_count: 0\n", + "num_results: 0, result_count: 0\n", + "mole_concentration_of_dissolved_molecular_oxygen_in_sea_water_at_shallowest_local_minimum_in_vertical_profile\n", + "num_results: 0, result_count: 0\n", + "num_results: 0, result_count: 0\n", + "mole_concentration_of_preformed_dissolved_molecular_oxygen_in_sea_water\n", + "num_results: 0, result_count: 0\n", + "num_results: 0, result_count: 0\n", + "moles_of_oxygen_per_unit_mass_in_sea_water\n", + "num_results: 813, result_count: 0\n", + "num_results: 813, result_count: 500\n", + "num_results: 813, result_count: 1000\n", + "surface_molecular_oxygen_partial_pressure_difference_between_sea_water_and_air\n", + "num_results: 0, result_count: 0\n", + "num_results: 0, result_count: 0\n", + "temperature_of_sensor_for_oxygen_in_sea_water\n", + "num_results: 167, result_count: 0\n", + "num_results: 167, result_count: 167\n", + "volume_fraction_of_oxygen_in_sea_water\n", + "num_results: 18, result_count: 0\n", + "num_results: 18, result_count: 18\n", + "volume_mixing_ratio_of_oxygen_at_stp_in_sea_water\n", + "num_results: 0, result_count: 0\n", + "num_results: 0, result_count: 0\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleurlorgstd_name
0St. Lucie Estuary - South Fork 2 (SLE-SF2)https://erddap.secoora.org/erddap/tabledap/st-...SECOORAfractional_saturation_of_oxygen_in_sea_water
0Neuse River at Marker 15 (ModMon 70, AWS J8903...https://erddap.secoora.org/erddap/tabledap/neu...SECOORAfractional_saturation_of_oxygen_in_sea_water
0Pamlico Sound at PS9 (ModMon)https://erddap.secoora.org/erddap/tabledap/pam...SECOORAfractional_saturation_of_oxygen_in_sea_water
0Indian River Lagoon - Jensen Beach (IRL-JB)https://erddap.secoora.org/erddap/tabledap/ind...SECOORAfractional_saturation_of_oxygen_in_sea_water
0Indian River Lagoon - Sebastian (IRL-SB)https://erddap.secoora.org/erddap/tabledap/ind...SECOORAfractional_saturation_of_oxygen_in_sea_water
...............
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
\n", + "

5485 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " title \\\n", + "0 St. Lucie Estuary - South Fork 2 (SLE-SF2) \n", + "0 Neuse River at Marker 15 (ModMon 70, AWS J8903... \n", + "0 Pamlico Sound at PS9 (ModMon) \n", + "0 Indian River Lagoon - Jensen Beach (IRL-JB) \n", + "0 Indian River Lagoon - Sebastian (IRL-SB) \n", + ".. ... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "\n", + " url org \\\n", + "0 https://erddap.secoora.org/erddap/tabledap/st-... SECOORA \n", + "0 https://erddap.secoora.org/erddap/tabledap/neu... SECOORA \n", + "0 https://erddap.secoora.org/erddap/tabledap/pam... SECOORA \n", + "0 https://erddap.secoora.org/erddap/tabledap/ind... SECOORA \n", + "0 https://erddap.secoora.org/erddap/tabledap/ind... SECOORA \n", + ".. ... ... \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "\n", + " std_name \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + ".. ... \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "\n", + "[5485 rows x 4 columns]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from ckanapi import RemoteCKAN\n", + "import time\n", + "ua = 'ckanapiioos/1.0 (+https://ioos.us/)'\n", + "\n", + "#ioos_catalog = RemoteCKAN('https://data.ioos.us', user_agent=ua, get_only=True)\n", + "ioos_catalog = RemoteCKAN('https://data.ioos.us', user_agent=ua)\n", + "ioos_catalog\n", + "\n", + "df_out = pd.DataFrame()\n", + "\n", + "for std_name in std_names['id']:\n", + "\n", + " print(std_name)\n", + "\n", + " fq = '+cf_standard_names:{}'.format(std_name)\n", + "\n", + " result_count = 0\n", + "\n", + " while True:\n", + " datasets = ioos_catalog.action.package_search(fq=fq, rows=500)\n", + "\n", + " num_results = datasets['count']\n", + "\n", + " print(f\"num_results: {num_results}, result_count: {result_count}\")\n", + "\n", + " for dataset in datasets['results']:\n", + " #print(dataset['title'])\n", + " df = pd.DataFrame({'title': [dataset['title']],\n", + " 'url': [dataset['resources'][0]['url']],\n", + " 'org': [dataset['organization']['title']],\n", + " 'std_name':std_name})\n", + "\n", + " df_out = pd.concat([df_out, df])\n", + "\n", + " result_count = result_count + 1\n", + "\n", + " time.sleep(1)\n", + "\n", + " if(result_count >= num_results):\n", + " print(f\"num_results: {num_results}, result_count: {result_count}\")\n", + " break\n", + "\n", + "df_out" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "A0atXi0kEnbr" + }, + "source": [ + "## Do some summarizing of the responses\n", + "\n", + "How many orgs have dissolved O2 data?" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 363 + }, + "id": "K3tcW2iyDpFd", + "outputId": "aacb7d85-9c9c-4fe8-ba2e-74d805a7deb5" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleurlstd_name
org
CeNCOOS222
GCOOS220822082208
Glider DAC262526252625
NERACOOS282828
PacIOOS161616
SECOORA606606606
\n", + "
" + ], + "text/plain": [ + " title url std_name\n", + "org \n", + "CeNCOOS 2 2 2\n", + "GCOOS 2208 2208 2208\n", + "Glider DAC 2625 2625 2625\n", + "NERACOOS 28 28 28\n", + "PacIOOS 16 16 16\n", + "SECOORA 606 606 606" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_out.groupby(by='org').count()" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "yVz8vdNkEt6X" + }, + "source": [ + "## Digging into the duplicates we have.\n", + "\n", + "How many of those are unique? The search above looked for all cf standard names for dissolved Oxygen. We might have some duplicate dataset returns, which means the same dataset might have multiple oxygen variables. So, let's filter down just to the unique datasets to query for data." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 455 + }, + "id": "0wygCC8X5Tpc", + "outputId": "48be015f-7e8d-45af-b2cd-e7a37fa6bf86" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleorgstd_name
url
http://www.neracoos.org/erddap/tabledap/A01_optode_all333
http://www.neracoos.org/erddap/tabledap/GRBGBWQ_NERRS444
http://www.neracoos.org/erddap/tabledap/GRBLRWQ_NERRS444
http://www.neracoos.org/erddap/tabledap/LOBO_CSV_65111
http://www.neracoos.org/erddap/tabledap/URI_168-MV_BottomSonde161616
............
https://gliders.ioos.us/erddap/tabledap/unit_648-20230324T1507222
https://gliders.ioos.us/erddap/tabledap/uvi_01-20230921T1324666
https://gliders.ioos.us/erddap/tabledap/uvi_01-20240809T1334222
https://pae-paha.pacioos.hawaii.edu/erddap/tabledap/hui_water_quality888
https://pae-paha.pacioos.hawaii.edu/erddap/tabledap/nss_012888
\n", + "

1216 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " title org std_name\n", + "url \n", + "http://www.neracoos.org/erddap/tabledap/A01_opt... 3 3 3\n", + "http://www.neracoos.org/erddap/tabledap/GRBGBWQ... 4 4 4\n", + "http://www.neracoos.org/erddap/tabledap/GRBLRWQ... 4 4 4\n", + "http://www.neracoos.org/erddap/tabledap/LOBO_CS... 1 1 1\n", + "http://www.neracoos.org/erddap/tabledap/URI_168... 16 16 16\n", + "... ... ... ...\n", + "https://gliders.ioos.us/erddap/tabledap/unit_64... 2 2 2\n", + "https://gliders.ioos.us/erddap/tabledap/uvi_01-... 6 6 6\n", + "https://gliders.ioos.us/erddap/tabledap/uvi_01-... 2 2 2\n", + "https://pae-paha.pacioos.hawaii.edu/erddap/tabl... 8 8 8\n", + "https://pae-paha.pacioos.hawaii.edu/erddap/tabl... 8 8 8\n", + "\n", + "[1216 rows x 3 columns]" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_group = df_out.groupby(by='url').count()\n", + "\n", + "df_group" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Drop duplicate records\n", + "\n", + "We identify duplicates by looking at the URL, which should be unique for each dataset." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + }, + "id": "H6rQj51d7cAm", + "outputId": "0942f042-834a-415c-e276-ad0e89e732ed" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleurlorgstd_name
0Neuse River near the south shore (ModMon 96)https://erddap.secoora.org/erddap/tabledap/neu...SECOORAfractional_saturation_of_oxygen_in_sea_water
0Great Bay,NH. Lamprey River WQ stationhttp://www.neracoos.org/erddap/tabledap/GRBLRW...NERACOOSfractional_saturation_of_oxygen_in_sea_water
0Great Bay,NH. Great Bay WQ stationhttp://www.neracoos.org/erddap/tabledap/GRBGBW...NERACOOSfractional_saturation_of_oxygen_in_sea_water
0um_242-20221205T1648-delayedhttps://gliders.ioos.us/erddap/tabledap/um_242...Glider DACfractional_saturation_of_oxygen_in_sea_water
0ru30-20221011T1527-delayedhttps://gliders.ioos.us/erddap/tabledap/ru30-2...Glider DACfractional_saturation_of_oxygen_in_sea_water
...............
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
\n", + "

1216 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " title \\\n", + "0 Neuse River near the south shore (ModMon 96) \n", + "0 Great Bay,NH. Lamprey River WQ station \n", + "0 Great Bay,NH. Great Bay WQ station \n", + "0 um_242-20221205T1648-delayed \n", + "0 ru30-20221011T1527-delayed \n", + ".. ... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "\n", + " url org \\\n", + "0 https://erddap.secoora.org/erddap/tabledap/neu... SECOORA \n", + "0 http://www.neracoos.org/erddap/tabledap/GRBLRW... NERACOOS \n", + "0 http://www.neracoos.org/erddap/tabledap/GRBGBW... NERACOOS \n", + "0 https://gliders.ioos.us/erddap/tabledap/um_242... Glider DAC \n", + "0 https://gliders.ioos.us/erddap/tabledap/ru30-2... Glider DAC \n", + ".. ... ... \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "\n", + " std_name \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + ".. ... \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "\n", + "[1216 rows x 4 columns]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_out_nodups = df_out.drop_duplicates(subset=['url'],keep='last')\n", + "\n", + "df_out_nodups" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "UDsBe8k9E-47" + }, + "source": [ + "## How many endpoints are not ERDDAP?\n", + "\n", + "Just to see what endpoints we're working with, let's show endpoints that aren't ERDDAP." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + }, + "id": "saDpOVP5778u", + "outputId": "f0a8f4bb-e77a-4020-b295-f66cfd57fb64" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleurlorgstd_name
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [title, url, org, std_name]\n", + "Index: []" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_out_nodups.loc[~df_out_nodups['url'].str.contains('erddap')]" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "t9PwQW_7Gj0a" + }, + "source": [ + "## Drop the Glider DAC data\n", + "\n", + "Glider DAC is already making it to NCEI, so we can drop those entries." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + }, + "id": "u0y8KMRYGhl9", + "outputId": "21f54f00-02e1-497b-a45e-83ee0004ca4b" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleurlorgstd_name
0Neuse River near the south shore (ModMon 96)https://erddap.secoora.org/erddap/tabledap/neu...SECOORAfractional_saturation_of_oxygen_in_sea_water
0Great Bay,NH. Lamprey River WQ stationhttp://www.neracoos.org/erddap/tabledap/GRBLRW...NERACOOSfractional_saturation_of_oxygen_in_sea_water
0Great Bay,NH. Great Bay WQ stationhttp://www.neracoos.org/erddap/tabledap/GRBGBW...NERACOOSfractional_saturation_of_oxygen_in_sea_water
0WACCASASSA RIVER NR GULF HAMMOCK, FLA. (USGS 0...https://erddap.secoora.org/erddap/tabledap/gov...SECOORAmass_concentration_of_oxygen_in_sea_water
0LITTLE BACK RIVER AT HOG ISLAND, NEAR SAVANNAH...https://erddap.secoora.org/erddap/tabledap/gov...SECOORAmass_concentration_of_oxygen_in_sea_water
...............
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
0Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...https://gcoos5.geos.tamu.edu/erddap/tabledap/W...GCOOSvolume_fraction_of_oxygen_in_sea_water
\n", + "

422 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " title \\\n", + "0 Neuse River near the south shore (ModMon 96) \n", + "0 Great Bay,NH. Lamprey River WQ station \n", + "0 Great Bay,NH. Great Bay WQ station \n", + "0 WACCASASSA RIVER NR GULF HAMMOCK, FLA. (USGS 0... \n", + "0 LITTLE BACK RIVER AT HOG ISLAND, NEAR SAVANNAH... \n", + ".. ... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", + "\n", + " url org \\\n", + "0 https://erddap.secoora.org/erddap/tabledap/neu... SECOORA \n", + "0 http://www.neracoos.org/erddap/tabledap/GRBLRW... NERACOOS \n", + "0 http://www.neracoos.org/erddap/tabledap/GRBGBW... NERACOOS \n", + "0 https://erddap.secoora.org/erddap/tabledap/gov... SECOORA \n", + "0 https://erddap.secoora.org/erddap/tabledap/gov... SECOORA \n", + ".. ... ... \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "\n", + " std_name \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 mass_concentration_of_oxygen_in_sea_water \n", + "0 mass_concentration_of_oxygen_in_sea_water \n", + ".. ... \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "0 volume_fraction_of_oxygen_in_sea_water \n", + "\n", + "[422 rows x 4 columns]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_out_nodups_no_glider = df_out_nodups.loc[~df_out_nodups['org'].str.contains('Glider DAC')]\n", + "df_out_nodups_no_glider" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "f_PGG_wsHYwF" + }, + "source": [ + "## What's the remaining distribution?\n", + "\n", + "This is the distribution of unique datasets found in the IOOS Data Catalog which have a CF Standard Name that contains the work `oxygen` and `sea_water`. We've dropped out the Glider DAC datasets as, theoretically, those are in NCEI already." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 331 + }, + "id": "fRHL-7lPGwOL", + "outputId": "b72e8a38-1e63-44b1-9644-5eaa7df9abc6" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleurlstd_name
org
CeNCOOS222
GCOOS378378378
NERACOOS555
PacIOOS222
SECOORA353535
\n", + "
" + ], + "text/plain": [ + " title url std_name\n", + "org \n", + "CeNCOOS 2 2 2\n", + "GCOOS 378 378 378\n", + "NERACOOS 5 5 5\n", + "PacIOOS 2 2 2\n", + "SECOORA 35 35 35" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_out_nodups_no_glider.groupby(by='org').count()" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Kpl4C1lOFHMV" + }, + "source": [ + "Let's print out the response as a csv to share." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "V2mxu3cn8-B3", + "outputId": "f63f2c25-410a-4c55-f47a-5d68b0af3a74" + }, + "outputs": [], + "source": [ + "# print(df_out_nodups_no_glider.to_csv(index=False))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Ingest data\n", + "\n", + "Let's rip through all of the datasets, grab the data as a table (including units) and make a monster dictionary. This takes a bit." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "id": "Wk9myBdgBUxH" + }, + "outputs": [], + "source": [ + "df_out_final = {}\n", + "\n", + "for index,row in df_out_nodups_no_glider.iterrows():\n", + " #print(row)\n", + " df_out_final['{}'.format(row['title'])] = pd.read_csv('{}.csvp'.format(row['url']), low_memory=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "dict_keys(['Neuse River near the south shore (ModMon 96)', 'Great Bay,NH. Lamprey River WQ station', 'Great Bay,NH. Great Bay WQ station', 'WACCASASSA RIVER NR GULF HAMMOCK, FLA. (USGS 02313700)', 'LITTLE BACK RIVER AT HOG ISLAND, NEAR SAVANNAH, GA (USGS 021989793)', 'CRABTREE SWAMP AT CONWAY, SC (USGS 02110701)', 'Pamlico Sound at PS9 (ModMon)', 'St. Lucie Estuary - South Fork (SLE-SF)', 'Indian River Lagoon - Link Port (IRL-LP)', 'Indian River Lagoon - Sebastian (IRL-SB)', 'Indian River Lagoon - Jensen Beach (IRL-JB)', 'MIDDLE RIVER AT FISH HOLE AT PORT WENTWORTH, GA (USGS 02198955)', 'Indian River Lagoon - Vero Beach (IRL-VB)', 'Sanibel Dock', 'ST JOHNS R DAMES POINT BRIDGE AT JACKSONVILLE, FL (USGS 302309081333001)', 'New Pass Bridge', 'LAKE MATTAMUSKEET E OF NC HWY 94 NR FAIRFIELD, NC (USGS 0208458893)', 'COOPER R AT FILBIN CREEK AT NORTH CHARLESTON, SC (USGS 021720677)', 'Neuse River South River (ModMon 165)', 'Neuse River near the north shore (ModMon 95)', 'Pamlico Sound at PS1 (ModMon)', 'WACCAMAW R NR HAGLEY LAND. NR PAWLEYS ISLAND, SC (USGS 02110815)', 'Indian River Lagoon - Malabar (IRL-MB)', 'Pamlico Sound at PS8 (ModMon)', 'Pamlico Sound at PS2 (ModMon)', '2nd Avenue Pier', 'WANDO RIVER ABOVE MT PLEASANT, SC (USGS 021720698)', 'Pamlico Sound at PS3 (ModMon)', 'Apache Pier', 'Pamlico Sound at PS5 (ModMon)', 'Neuse River at Marker 9 (ModMon 120, AWS J9530000)', 'Indian River Lagoon - Titusville (IRL-TS)', 'SKRINE CREEK NEAR MCCLELLENVILLE, SC (USGS 330428079214800)', 'Neuse River near Janeiro (ModMon 140, AWS J9590000)', 'Neuse River at Marker 15 (ModMon 70, AWS J8903600)', 'St. Lucie Estuary - South Fork 2 (SLE-SF2)', 'COOPER RIVER AT U.S. HWY 17 AT CHARLESTON, SC (USGS 021720709)', 'PacIOOS Nearshore Sensor 012: Kalama Beach Park, Maui, Hawaii', 'URI 168 Mount View, Bottom Sonde', 'Hui O Ka Wai Ola Water Quality Data', '\"Deepwater CTD - 00370067.bdo.nc - 27.32N, -87.35W - 1962-03-03\"', '\"Deepwater CTD - n1l04s12.ctd.nc - 29.21N, -87.35W - 1997-11-24\"', '\"Deepwater CTD - 00830668.bdo.nc - 25.65N, -85.02W - 1983-03-20\"', '\"Deepwater CTD - 00589307.bdo.nc - 25.25N, -87.23W - 1969-11-25\"', '\"Deepwater CTD - 00530098.bdo.nc - 26.25N, -93.76W - 1968-02-16\"', '\"Deepwater CTD - 00633910.bdo.nc - 21.5N, -86.0W - 1971-00-16\"', '\"Deepwater CTD - 03358737.ctd.nc - 22.0N, -93.0W - 1985-03-14\"', '\"Deepwater CTD - 00586728.bdo.nc - 23.07N, -96.3W - 1969-10-24\"', '\"Deepwater CTD - 00071521.bdo.nc - 26.58N, -85.55W - 1935-04-11\"', '\"Deepwater CTD - 00731452.bdo.nc - 29.73N, -87.04W - 1976-02-18\"', '\"Deepwater CTD - 00498729.bdo.nc - 25.57N, -93.48W - 1967-03-04\"', '\"Deepwater CTD - d93e134.bdo.nc - 27.76N, -95.03W - 1993-05-05\"', '\"Deepwater CTD - d93g171.ctd.nc - 27.81N, -95.06W - 1993-11-17\"', '\"Deepwater CTD - 00635118.bdo.nc - 22.25N, -84.83W - 1971-00-24\"', '\"Deepwater CTD - 94g0505.ctd.nc - 24.96N, -85.0W - 1994-07-18\"', '\"Deepwater CTD - 92g0307a.ctd.nc - 27.79N, -95.05W - 1992-03-20\"', '\"Deepwater CTD - 00417315.bdo.nc - 26.02N, -95.09W - 1964-01-18\"', '\"Deepwater CTD - 00582905.bdo.nc - 28.25N, -88.38W - 1969-00-07\"', '\"Deepwater CTD - 53784.ctd.nc - 28.5N, -87.0W - 1992-04-27\"', '\"Deepwater CTD - d93e040.ctd.nc - 27.79N, -92.0W - 1993-04-29\"', '\"Deepwater CTD - 4_09_096.ctd.nc - 26.75N, -90.83W - 1993-02-16\"', '\"Deepwater CTD - pe972247.ctd.nc - 28.79N, -86.51W - 1997-03-26\"', '\"Deepwater CTD - 00417529.bdo.nc - 21.37N, -95.02W - 1964-01-22\"', '\"Deepwater CTD - 00050772.bdo.nc - 25.77N, -92.52W - 1932-04-17\"', '\"Deepwater CTD - 92g10014.ctd.nc - 27.76N, -91.74W - 1992-10-05\"', '\"Deepwater CTD - 00566676.bdo.nc - 23.48N, -84.13W - 1969-04-12\"', '\"Deepwater CTD - 03260506.ctd.nc - 25.0N, -85.02W - 1979-03-28\"', '\"Deepwater CTD - d93e088.bdo.nc - 27.66N, -94.22W - 1993-05-02\"', '\"Deepwater CTD - 00027.ctd.nc - 27.83N, -88.5W - 1994-04-20\"', '\"Deepwater CTD - 00548331.bdo.nc - 26.87N, -87.65W - 1968-00-25\"', '\"Deepwater CTD - 00476842.bdo.nc - 24.2N, -81.78W - 1966-06-03\"', '\"Deepwater CTD - 94g0841.ctd.nc - 28.1N, -89.98W - 1994-10-23\"', '\"Deepwater CTD - 00021.ctd.nc - 28.58N, -89.0W - 1994-04-19\"', '\"Deepwater CTD - 00602166.bdo.nc - 21.67N, -85.58W - 1970-06-29\"', '\"Deepwater CTD - d93g231.ctd.nc - 27.65N, -95.71W - 1993-11-21\"', '\"Deepwater CTD - n1l09s17.ctd.nc - 28.21N, -85.72W - 1997-11-19\"', '\"Deepwater CTD - pe972274.ctd.nc - 29.17N, -87.1W - 1997-03-24\"', '\"Deepwater CTD - 92g0204.ctd.nc - 24.75N, -90.1W - 1992-01-27\"', '\"Deepwater CTD - 00543125.bdo.nc - 21.6N, -85.63W - 1968-06-29\"', '\"Deepwater CTD - 00682507.bdo.nc - 22.3N, -96.53W - 1973-06-02\"', '\"Deepwater CTD - 87g1121.ctd.nc - 26.33N, -94.75W - 1987-11-22\"', '\"Deepwater CTD - 89g1519.ctd.nc - 25.66N, -94.75W - 1989-11-14\"', '\"Deepwater CTD - 5_07_075.ctd.nc - 26.28N, -92.17W - 1993-05-30\"', '\"Deepwater CTD - d93e133.ctd.nc - 27.72N, -95.01W - 1993-05-05\"', '\"Deepwater CTD - 00856608.bdo.nc - 23.41N, -93.24W - 1985-10-24\"', '\"Deepwater CTD - 00458827.bdo.nc - 24.73N, -86.83W - 1965-00-16\"', '\"Deepwater CTD - 00517804.bdo.nc - 26.5N, -93.13W - 1967-00-12\"', '\"Deepwater CTD - 00374916.bdo.nc - 24.58N, -84.0W - 1962-05-27\"', '\"Deepwater CTD - 7_12_117.ctd.nc - 27.77N, -88.83W - 1993-12-07\"', '\"Deepwater CTD - 03274373.ctd.nc - 26.08N, -84.84W - 1982-04-05\"', '\"Deepwater CTD - d93g068.bdo.nc - 27.94N, -91.54W - 1993-11-11\"', '\"Deepwater CTD - 00577082.bdo.nc - 23.39N, -90.05W - 1969-07-18\"', '\"Deepwater CTD - d93f201.bdo.nc - 26.53N, -96.33W - 1993-00-06\"', '\"Deepwater CTD - 00580119.bdo.nc - 22.0N, -94.4W - 1969-00-12\"', '\"Deepwater CTD - d93d058.ctd.nc - 27.97N, -90.5W - 1993-02-00\"', '\"Deepwater CTD - 00136389.bdo.nc - 27.45N, -86.45W - 1942-04-03\"', '\"Deepwater CTD - 03317083.ctd.nc - 27.18N, -92.33W - 1990-10-18\"', '\"Deepwater CTD - 00415671.bdo.nc - 26.67N, -95.03W - 1963-12-00\"', '\"Deepwater CTD - 00548949.bdo.nc - 25.47N, -88.57W - 1968-00-01\"', '\"Deepwater CTD - d93f048.bdo.nc - 27.79N, -92.0W - 1993-07-29\"', '\"Deepwater CTD - d92b002.bdo.nc - 27.74N, -94.2W - 1992-00-01\"', '\"Deepwater CTD - d94j007.bdo.nc - 27.87N, -92.86W - 1994-11-03\"', '\"Deepwater CTD - d93d001.bdo.nc - 27.66N, -94.22W - 1993-02-06\"', '\"Deepwater CTD - n4l01s04.ctd.nc - 28.9N, -88.98W - 1998-11-24\"', '\"Deepwater CTD - 00466692.bdo.nc - 27.55N, -92.69W - 1966-01-27\"', '\"Deepwater CTD - 00731871.bdo.nc - 24.85N, -84.32W - 1976-02-28\"', '\"Deepwater CTD - 00491398.bdo.nc - 23.75N, -85.98W - 1966-11-00\"', '\"Deepwater CTD - 00574425.bdo.nc - 26.23N, -88.36W - 1969-06-24\"', '\"Deepwater CTD - d93d053.bdo.nc - 27.97N, -91.32W - 1993-02-00\"', '\"Deepwater CTD - 03259980.ctd.nc - 27.68N, -85.68W - 1979-02-14\"', '\"Deepwater CTD - 3_13_133.ctd.nc - 28.76N, -88.16W - 1992-11-10\"', '\"Deepwater CTD - 00681503.bdo.nc - 23.54N, -85.6W - 1973-05-20\"', '\"Deepwater CTD - 03274413.ctd.nc - 26.57N, -84.86W - 1982-04-07\"', '\"Deepwater CTD - 00050632.bdo.nc - 20.48N, -95.4W - 1932-04-07\"', '\"Deepwater CTD - 91g0235.ctd.nc - 26.81N, -93.88W - 1991-03-06\"', '\"Deepwater CTD - 00516980.bdo.nc - 19.8N, -93.64W - 1967-00-05\"', '\"Deepwater CTD - 87g1204.ctd.nc - 26.4N, -93.23W - 1987-11-29\"', '\"Deepwater CTD - 90g1513.bdo.nc - 25.67N, -88.67W - 1990-07-15\"', '\"Deepwater CTD - 53870.ctd.nc - 27.0N, -91.0W - 1992-05-18\"', '\"Deepwater CTD - 00601128.bdo.nc - 25.17N, -86.4W - 1970-06-19\"', '\"Deepwater CTD - 03274381.ctd.nc - 26.13N, -84.45W - 1982-04-05\"', '\"Deepwater CTD - 00477629.bdo.nc - 27.58N, -88.08W - 1966-06-12\"', '\"Deepwater CTD - 00531070.bdo.nc - 24.5N, -89.5W - 1968-02-27\"', '\"Deepwater CTD - d93e151.bdo.nc - 27.52N, -95.79W - 1993-05-06\"', '\"Deepwater CTD - 00499867.bdo.nc - 22.87N, -85.4W - 1967-03-15\"', '\"Deepwater CTD - n4l06s13.ctd.nc - 29.13N, -86.79W - 1998-11-20\"', '\"Deepwater CTD - 00516847.bdo.nc - 20.76N, -95.18W - 1967-00-04\"', '\"Deepwater CTD - n1l01s05.ctd.nc - 28.8N, -88.94W - 1997-11-26\"', '\"Deepwater CTD - d94j144.bdo.nc - 26.02N, -95.97W - 1994-11-11\"', '\"Deepwater CTD - 00858525.bdo.nc - 25.4N, -96.02W - 1986-01-30\"', '\"Deepwater CTD - 00136381.bdo.nc - 27.35N, -86.53W - 1942-04-02\"', '\"Deepwater CTD - 00580370.bdo.nc - 25.62N, -94.33W - 1969-00-15\"', '\"Deepwater CTD - d94h048.bdo.nc - 27.75N, -92.0W - 1994-04-28\"', '\"Deepwater CTD - 00574194.bdo.nc - 24.52N, -87.7W - 1969-06-21\"', '\"Deepwater CTD - 00370087.bdo.nc - 28.53N, -87.3W - 1962-03-04\"', '\"Deepwater CTD - 00050228.bdo.nc - 23.75N, -85.15W - 1932-02-12\"', '\"Deepwater CTD - 00050637.bdo.nc - 19.67N, -95.9W - 1932-04-07\"', '\"Deepwater CTD - 87g1119.ctd.nc - 27.0N, -94.74W - 1987-11-22\"', '\"Deepwater CTD - 00601678.bdo.nc - 27.6N, -86.7W - 1970-06-24\"', '\"Deepwater CTD - 5_03_029.ctd.nc - 26.77N, -94.83W - 1993-06-02\"', '\"Deepwater CTD - 03274401.ctd.nc - 26.12N, -84.65W - 1982-04-06\"', '\"Deepwater CTD - 93g0105k.ctd.nc - 26.67N, -95.0W - 1993-01-11\"', '\"Deepwater CTD - 00830693.bdo.nc - 25.48N, -85.58W - 1983-03-20\"', '\"Deepwater CTD - n3l06s11.ctd.nc - 29.32N, -86.63W - 1998-00-02\"', '\"Deepwater CTD - d94i013.bdo.nc - 27.94N, -91.54W - 1994-07-28\"', '\"Deepwater CTD - 5_13_134.ctd.nc - 28.62N, -88.17W - 1993-05-25\"', '\"Deepwater CTD - d94i115.ctd.nc - 27.81N, -95.06W - 1994-00-03\"', '\"Deepwater CTD - 00582482.bdo.nc - 24.8N, -86.97W - 1969-00-02\"', '\"Deepwater CTD - 00601170.bdo.nc - 25.22N, -85.85W - 1970-06-19\"', '\"Deepwater CTD - 00580185.bdo.nc - 22.81N, -94.39W - 1969-00-13\"', '\"Deepwater CTD - d93d094.bdo.nc - 27.88N, -92.86W - 1993-02-11\"', '\"Deepwater CTD - 53811.ctd.nc - 27.0N, -93.0W - 1992-05-01\"', '\"Deepwater CTD - 00419713.bdo.nc - 21.95N, -93.3W - 1964-03-02\"', '\"Deepwater CTD - 00517232.bdo.nc - 21.13N, -92.84W - 1967-00-06\"', '\"Deepwater CTD - d94i145.bdo.nc - 26.02N, -96.09W - 1994-00-06\"', '\"Deepwater CTD - n4l08s13.ctd.nc - 28.4N, -86.21W - 1998-11-19\"', '\"Deepwater CTD - 90g1503.bdo.nc - 27.34N, -92.01W - 1990-07-13\"', '\"Deepwater CTD - 00858533.bdo.nc - 25.04N, -95.4W - 1986-01-30\"', '\"Deepwater CTD - 00517715.bdo.nc - 22.02N, -92.4W - 1967-00-11\"', '\"Deepwater CTD - 00830155.bdo.nc - 24.42N, -84.92W - 1983-03-10\"', '\"Deepwater CTD - pe972218.ctd.nc - 29.25N, -87.89W - 1997-03-21\"', '\"Deepwater CTD - 00838276.bdo.nc - 27.52N, -85.15W - 1983-11-18\"', '\"Deepwater CTD - 00062488.bdo.nc - 23.25N, -82.27W - 1934-03-04\"', '\"Deepwater CTD - 00726638.bdo.nc - 28.02N, -89.71W - 1975-00-26\"', '\"Deepwater CTD - 00155481.bdo.nc - 27.45N, -93.07W - 1947-03-00\"', '\"Deepwater CTD - 00459198.bdo.nc - 28.35N, -87.17W - 1965-00-20\"', '\"Deepwater CTD - 3_14_136.ctd.nc - 28.77N, -87.5W - 1992-11-12\"', '\"Deepwater CTD - 00682497.bdo.nc - 25.56N, -88.82W - 1973-06-02\"', '\"Deepwater CTD - 00096.ctd.nc - 26.0N, -88.0W - 1994-05-05\"', '\"Deepwater CTD - 03358719.ctd.nc - 23.0N, -96.0W - 1985-03-12\"', '\"Deepwater CTD - 00370003.bdo.nc - 24.8N, -87.35W - 1962-03-02\"', '\"Deepwater CTD - 00601038.bdo.nc - 26.67N, -84.58W - 1970-06-18\"', '\"Deepwater CTD - 00596937.bdo.nc - 21.58N, -86.28W - 1970-04-21\"', '\"Deepwater CTD - 00500069.bdo.nc - 23.97N, -82.98W - 1967-03-18\"', '\"Deepwater CTD - pe972231.ctd.nc - 29.09N, -87.36W - 1997-03-23\"', '\"Deepwater CTD - n2l01s04.ctd.nc - 28.89N, -88.98W - 1998-05-14\"', '\"Deepwater CTD - 94g0844.bdo.nc - 27.87N, -89.75W - 1994-10-24\"', '\"Deepwater CTD - 00477111.bdo.nc - 24.18N, -81.62W - 1966-06-06\"', '\"Deepwater CTD - 88g0507d.ctd.nc - 27.76N, -93.47W - 1988-10-17\"', '\"Deepwater CTD - 00095972.bdo.nc - 23.78N, -82.17W - 1938-03-25\"', '\"Deepwater CTD - 00050109.bdo.nc - 23.65N, -80.85W - 1932-01-26\"', '\"Deepwater CTD - 00585960.bdo.nc - 24.93N, -94.05W - 1969-10-16\"', '\"Deepwater CTD - 00548152.bdo.nc - 28.04N, -89.23W - 1968-00-23\"', '\"Deepwater CTD - 00369441.bdo.nc - 23.13N, -83.3W - 1962-02-19\"', '\"Deepwater CTD - 00371200.bdo.nc - 23.32N, -94.95W - 1962-03-20\"', '\"Deepwater CTD - d94h162.bdo.nc - 27.43N, -96.1W - 1994-05-06\"', '\"Deepwater CTD - 03252360.ctd.nc - 29.07N, -87.97W - 1977-07-21\"', '\"Deepwater CTD - 00152.ctd.nc - 26.02N, -95.0W - 1994-05-13\"', '\"Deepwater CTD - n3l03s09.ctd.nc - 29.2N, -87.89W - 1998-00-04\"', '\"Deepwater CTD - 00530610.bdo.nc - 24.5N, -87.87W - 1968-02-22\"', '\"Deepwater CTD - 00681652.bdo.nc - 21.88N, -85.5W - 1973-05-22\"', '\"Deepwater CTD - 00153.ctd.nc - 26.02N, -95.5W - 1994-05-13\"', '\"Deepwater CTD - 00601681.bdo.nc - 27.67N, -86.53W - 1970-06-24\"', '\"Deepwater CTD - d93e036.ctd.nc - 27.97N, -91.32W - 1993-04-28\"', '\"Deepwater CTD - 00371864.bdo.nc - 26.75N, -96.25W - 1962-03-31\"', '\"Deepwater CTD - d94h051.bdo.nc - 27.46N, -93.0W - 1994-04-29\"', '\"Deepwater CTD - d94j147.bdo.nc - 26.01N, -96.31W - 1994-11-11\"', '\"Deepwater CTD - 00071245.bdo.nc - 27.32N, -89.9W - 1935-03-26\"', '\"Deepwater CTD - 00459098.bdo.nc - 26.8N, -90.86W - 1965-00-19\"', '\"Deepwater CTD - 97g08_09.ctd.nc - 27.85N, -85.9W - 1997-00-18\"', '\"Deepwater CTD - d94i014.bdo.nc - 27.97N, -91.32W - 1994-07-28\"', '\"Deepwater CTD - 00601733.bdo.nc - 28.15N, -85.55W - 1970-06-24\"', '\"Deepwater CTD - 00537449.bdo.nc - 21.7N, -85.43W - 1968-05-00\"', '\"Deepwater CTD - 00377199.bdo.nc - 24.47N, -80.35W - 1962-06-22\"', '\"Deepwater CTD - 00596192.bdo.nc - 22.03N, -86.07W - 1970-04-00\"', '\"Deepwater CTD - n2l01s05.ctd.nc - 28.8N, -88.95W - 1998-05-14\"', '\"Deepwater CTD - d93g190.ctd.nc - 27.13N, -96.34W - 1993-11-19\"', '\"Deepwater CTD - 88g0547.bdo.nc - 27.26N, -96.25W - 1988-10-23\"', '\"Deepwater CTD - 00012.ctd.nc - 28.09N, -89.51W - 1994-04-18\"', '\"Deepwater CTD - 90g1025a.ctd.nc - 27.28N, -92.97W - 1990-07-14\"', '\"Deepwater CTD - 88g0523d.ctd.nc - 26.55N, -94.77W - 1988-10-19\"', '\"Deepwater CTD - 03260002.ctd.nc - 27.63N, -85.54W - 1979-02-15\"', '\"Deepwater CTD - 00537961.bdo.nc - 24.23N, -86.8W - 1968-05-13\"', '\"Deepwater CTD - 03260943.ctd.nc - 27.66N, -85.53W - 1979-04-29\"', '\"Deepwater CTD - 97g08_02.ctd.nc - 27.94N, -87.98W - 1997-00-00\"', '\"Deepwater CTD - 00837959.bdo.nc - 24.9N, -84.63W - 1983-11-12\"', '\"Deepwater CTD - 00858542.bdo.nc - 24.68N, -94.78W - 1986-01-30\"', '\"Deepwater CTD - 00843608.bdo.nc - 25.23N, -84.65W - 1984-05-14\"', '\"Deepwater CTD - 00530381.bdo.nc - 23.28N, -85.27W - 1968-02-19\"', '\"Deepwater CTD - n4l07s09.ctd.nc - 29.02N, -86.25W - 1998-11-19\"', '\"Deepwater CTD - 00837962.bdo.nc - 24.87N, -84.68W - 1983-11-12\"', '\"Deepwater CTD - pe972239.ctd.nc - 29.56N, -86.83W - 1997-03-26\"', '\"Deepwater CTD - d94j115.bdo.nc - 27.81N, -95.06W - 1994-11-00\"', '\"Deepwater CTD - 94g0852.ctd.nc - 28.5N, -89.65W - 1994-10-24\"', '\"Deepwater CTD - d94i117.bdo.nc - 27.63N, -94.96W - 1994-00-03\"', '\"Deepwater CTD - 03300533.ctd.nc - 25.17N, -92.0W - 1987-04-07\"', '\"Deepwater CTD - d93d103.ctd.nc - 27.75N, -93.0W - 1993-02-12\"', '\"Deepwater CTD - 00601550.bdo.nc - 27.0N, -87.47W - 1970-06-23\"', '\"Deepwater CTD - 00028.ctd.nc - 27.56N, -88.5W - 1994-04-21\"', '\"Deepwater CTD - pe972232.ctd.nc - 28.9N, -87.35W - 1997-03-23\"', '\"Deepwater CTD - 00377286.bdo.nc - 24.05N, -80.54W - 1962-06-23\"', '\"Deepwater CTD - 83121702.ctd.nc - 25.35N, -87.43W - 1983-12-17\"', '\"Deepwater CTD - 00635798.bdo.nc - 24.38N, -84.23W - 1971-00-29\"', '\"Deepwater CTD - d94j117.bdo.nc - 27.63N, -94.96W - 1994-11-00\"', '\"Deepwater CTD - d93g063.ctd.nc - 27.92N, -90.51W - 1993-11-10\"', '\"Deepwater CTD - 00576882.bdo.nc - 22.49N, -86.83W - 1969-07-16\"', '\"Deepwater CTD - 00548423.bdo.nc - 23.17N, -85.48W - 1968-00-26\"', '\"Deepwater CTD - d93e030.bdo.nc - 28.02N, -90.5W - 1993-04-28\"', '\"Deepwater CTD - 4_07_075.ctd.nc - 26.28N, -92.17W - 1993-02-18\"', '\"Deepwater CTD - 00468436.bdo.nc - 24.01N, -85.77W - 1966-02-16\"', '\"Deepwater CTD - 94g0806.ctd.nc - 28.61N, -89.94W - 1994-10-20\"', '\"Deepwater CTD - 00624791.bdo.nc - 22.62N, -91.73W - 1971-05-27\"', '\"Deepwater CTD - 00331473.bdo.nc - 24.67N, -84.52W - 1960-03-31\"', '\"Deepwater CTD - 00577268.bdo.nc - 24.2N, -84.17W - 1969-07-20\"', '\"Deepwater CTD - 90g10023.ctd.nc - 27.59N, -93.2W - 1990-07-14\"', '\"Deepwater CTD - 00537813.bdo.nc - 23.79N, -86.1W - 1968-05-11\"', '\"Deepwater CTD - 5_04_033.ctd.nc - 26.77N, -94.17W - 1993-06-02\"', '\"Deepwater CTD - 94g0501.ctd.nc - 24.59N, -84.0W - 1994-07-18\"', '\"Deepwater CTD - d94h018.bdo.nc - 27.66N, -90.5W - 1994-04-26\"', '\"Deepwater CTD - d94j166.bdo.nc - 27.76N, -95.29W - 1994-11-13\"', '\"Deepwater CTD - 00596166.bdo.nc - 21.67N, -86.36W - 1970-04-00\"', '\"Deepwater CTD - 00574654.bdo.nc - 26.29N, -89.95W - 1969-06-26\"', '\"Deepwater CTD - 00596280.bdo.nc - 24.19N, -83.33W - 1970-04-11\"', '\"Deepwater CTD - 00539426.bdo.nc - 24.7N, -89.65W - 1968-05-28\"', '\"Deepwater CTD - 00596220.bdo.nc - 22.9N, -84.97W - 1970-04-10\"', '\"Deepwater CTD - 00658194.bdo.nc - 21.0N, -96.27W - 1972-05-18\"', '\"Deepwater CTD - 00574820.bdo.nc - 28.26N, -88.37W - 1969-06-28\"', '\"Deepwater CTD - 00050735.bdo.nc - 22.25N, -93.3W - 1932-04-15\"', '\"Deepwater CTD - 53789.ctd.nc - 26.27N, -87.0W - 1992-04-28\"', '\"Deepwater CTD - 00466678.bdo.nc - 27.37N, -93.5W - 1966-01-26\"', '\"Deepwater CTD - 03274354.ctd.nc - 26.15N, -84.63W - 1982-04-04\"', '\"Deepwater CTD - 92g0214.ctd.nc - 27.25N, -93.01W - 1992-01-29\"', '\"Deepwater CTD - d94i121.bdo.nc - 27.52N, -95.79W - 1994-00-04\"', '\"Deepwater CTD - d94j162.ctd.nc - 27.43N, -96.11W - 1994-11-13\"', '\"Deepwater CTD - 00577408.bdo.nc - 24.87N, -93.18W - 1969-07-21\"', '\"Deepwater CTD - pe972250.ctd.nc - 29.17N, -86.09W - 1997-03-26\"', '\"Deepwater CTD - 00858562.bdo.nc - 24.59N, -95.7W - 1986-02-01\"', '\"Deepwater CTD - 92g0705d.ctd.nc - 26.67N, -95.0W - 1992-06-23\"', '\"Deepwater CTD - d93g235.ctd.nc - 27.84N, -94.81W - 1993-11-21\"', '\"Deepwater CTD - d94i162.bdo.nc - 27.43N, -96.1W - 1994-00-07\"', '\"Deepwater CTD - 00499778.bdo.nc - 22.3N, -85.62W - 1967-03-14\"', '\"Deepwater CTD - 88g0533d.ctd.nc - 27.04N, -95.5W - 1988-10-21\"', '\"Deepwater CTD - pe972212.ctd.nc - 28.92N, -88.36W - 1997-03-20\"', '\"Deepwater CTD - 00548855.bdo.nc - 26.03N, -84.35W - 1968-00-31\"', '\"Deepwater CTD - 06720481.bdo.nc - 23.33N, -82.35W - 1971-06-23\"', '\"Deepwater CTD - 00455479.bdo.nc - 25.65N, -91.71W - 1965-00-14\"', '\"Deepwater CTD - 00516500.bdo.nc - 26.77N, -95.11W - 1967-00-01\"', '\"Deepwater CTD - 96g06_07.ctd.nc - 28.69N, -88.69W - 1996-10-20\"', '\"Deepwater CTD - st093lay.ctd.nc - 27.0N, -90.0W - 1994-05-00\"', '\"Deepwater CTD - 00371808.bdo.nc - 27.33N, -94.93W - 1962-03-30\"', '\"Deepwater CTD - 00477677.bdo.nc - 26.92N, -90.17W - 1966-06-12\"', '\"Deepwater CTD - 00830654.bdo.nc - 25.78N, -84.57W - 1983-03-20\"', '\"Deepwater CTD - d94j053.bdo.nc - 27.66N, -93.0W - 1994-11-06\"', '\"Deepwater CTD - d94i050.bdo.nc - 27.55N, -92.0W - 1994-07-30\"', '\"Deepwater CTD - 00530665.bdo.nc - 26.75N, -87.74W - 1968-02-22\"', '\"Deepwater CTD - 93g0105d.ctd.nc - 26.67N, -95.0W - 1993-01-10\"', '\"Deepwater CTD - 00830381.bdo.nc - 24.27N, -87.6W - 1983-03-15\"', '\"Deepwater CTD - 00592626.bdo.nc - 24.97N, -90.17W - 1970-02-05\"', '\"Deepwater CTD - d94j146.bdo.nc - 26.01N, -96.19W - 1994-11-11\"', '\"Deepwater CTD - 00369488.bdo.nc - 24.32N, -83.37W - 1962-02-20\"', '\"Deepwater CTD - 00843761.bdo.nc - 23.22N, -85.02W - 1984-05-17\"', '\"Deepwater CTD - 00537481.bdo.nc - 21.67N, -86.08W - 1968-05-00\"', '\"Deepwater CTD - 53794.ctd.nc - 27.0N, -88.5W - 1992-04-29\"', '\"Deepwater CTD - 00858489.bdo.nc - 24.75N, -93.87W - 1986-01-28\"', '\"Deepwater CTD - n1l08s11.ctd.nc - 28.6N, -85.98W - 1997-11-21\"', '\"Deepwater CTD - d94i159.bdo.nc - 26.93N, -96.44W - 1994-00-06\"', '\"Deepwater CTD - 87g1205.bdo.nc - 26.5N, -93.2W - 1987-11-30\"', '\"Deepwater CTD - 06925070.bdo.nc - 25.36N, -84.39W - 1982-04-04\"', '\"Deepwater CTD - 00070756.bdo.nc - 24.18N, -82.72W - 1935-02-20\"', '\"Deepwater CTD - d93f048.ctd.nc - 27.79N, -92.0W - 1993-07-29\"', '\"Deepwater CTD - 00596574.bdo.nc - 23.19N, -83.97W - 1970-04-15\"', '\"Deepwater CTD - n2l06s17.ctd.nc - 28.83N, -87.05W - 1998-05-12\"', '\"Deepwater CTD - 4_13_133.ctd.nc - 28.76N, -88.16W - 1993-02-13\"', '\"Deepwater CTD - 4_07_073.ctd.nc - 26.77N, -92.17W - 1993-02-18\"', '\"Deepwater CTD - 53802.ctd.nc - 27.0N, -90.5W - 1992-04-30\"', '\"Deepwater CTD - 00596158.bdo.nc - 21.77N, -86.05W - 1970-04-00\"', '\"Deepwater CTD - 00732350.bdo.nc - 28.62N, -87.92W - 1976-03-17\"', '\"Deepwater CTD - d92c003.bdo.nc - 27.8N, -94.19W - 1992-11-05\"', '\"Deepwater CTD - d93e134.ctd.nc - 27.76N, -95.03W - 1993-05-05\"', '\"Deepwater CTD - 00083.ctd.nc - 27.0N, -86.0W - 1994-05-02\"', '\"Deepwater CTD - 3_02_010.ctd.nc - 26.0N, -95.5W - 1992-11-20\"', '\"Deepwater CTD - 00596120.bdo.nc - 22.02N, -85.2W - 1970-04-00\"', '\"Deepwater CTD - 94g0804.bdo.nc - 28.48N, -89.74W - 1994-10-20\"', '\"Deepwater CTD - d94j162.bdo.nc - 27.43N, -96.11W - 1994-11-13\"', '\"Deepwater CTD - d93f210.bdo.nc - 27.84N, -94.59W - 1993-00-06\"', '\"Deepwater CTD - 00374750.bdo.nc - 23.07N, -85.43W - 1962-05-24\"', '\"Deepwater CTD - 87g1205.ctd.nc - 26.5N, -93.2W - 1987-11-30\"', '\"Deepwater CTD - 03317559.ctd.nc - 26.02N, -90.97W - 1991-03-26\"', '\"Deepwater CTD - 00468628.bdo.nc - 29.13N, -86.33W - 1966-02-18\"', '\"Deepwater CTD - 3_09_096.ctd.nc - 26.75N, -90.83W - 1992-11-14\"', '\"Deepwater CTD - d94h052.bdo.nc - 27.56N, -93.0W - 1994-04-29\"', '\"Deepwater CTD - 00634943.bdo.nc - 24.07N, -96.35W - 1971-00-23\"', '\"Deepwater CTD - 00838233.bdo.nc - 27.05N, -86.13W - 1983-11-17\"', '\"Deepwater CTD - 00596657.bdo.nc - 21.82N, -85.66W - 1970-04-16\"', '\"Deepwater CTD - 00537623.bdo.nc - 22.35N, -85.63W - 1968-05-00\"', '\"Deepwater CTD - 00843538.bdo.nc - 25.63N, -84.95W - 1984-05-13\"', '\"Deepwater CTD - d92a098.bdo.nc - 27.66N, -93.0W - 1992-05-00\"', '\"Deepwater CTD - d94h090.ctd.nc - 27.74N, -94.2W - 1994-05-01\"', '\"Deepwater CTD - 00636527.bdo.nc - 19.53N, -94.56W - 1971-00-03\"', '\"Deepwater CTD - d93f044.ctd.nc - 27.97N, -91.32W - 1993-07-29\"', '\"Deepwater CTD - d93e207.ctd.nc - 27.65N, -95.71W - 1993-05-10\"', '\"Deepwater CTD - 00589631.bdo.nc - 23.93N, -82.24W - 1969-11-30\"', '\"Deepwater CTD - 00007.ctd.nc - 27.0N, -90.0W - 1994-04-17\"', '\"Deepwater CTD - 87g1114.ctd.nc - 27.01N, -93.26W - 1987-11-21\"', '\"Deepwater CTD - 00371547.bdo.nc - 26.67N, -93.07W - 1962-03-26\"', '\"Deepwater CTD - n2l06s09.ctd.nc - 29.5N, -86.47W - 1998-05-12\"', '\"Deepwater CTD - 00468026.bdo.nc - 24.33N, -92.06W - 1966-02-12\"', '\"Deepwater CTD - 00682138.bdo.nc - 21.58N, -85.68W - 1973-05-27\"', '\"Deepwater CTD - 00514645.bdo.nc - 25.23N, -96.5W - 1967-00-18\"', '\"Deepwater CTD - 00537597.bdo.nc - 22.2N, -86.23W - 1968-05-00\"', '\"Deepwater CTD - 00727504.bdo.nc - 25.61N, -84.93W - 1975-00-13\"', '\"Deepwater CTD - 00573961.bdo.nc - 27.18N, -85.45W - 1969-06-19\"', '\"Deepwater CTD - 00676717.bdo.nc - 23.58N, -82.35W - 1973-02-25\"', '\"Deepwater CTD - 92g0305d.ctd.nc - 26.67N, -94.97W - 1992-03-18\"', '\"Deepwater CTD - 00636468.bdo.nc - 20.47N, -94.52W - 1971-00-03\"', '\"Deepwater CTD - 90g10103.bdo.nc - 28.44N, -89.7W - 1990-07-22\"', '\"Deepwater CTD - 00682469.bdo.nc - 22.26N, -96.08W - 1973-06-01\"', '\"Deepwater CTD - 03260912.ctd.nc - 25.95N, -84.5W - 1979-04-26\"', '\"Deepwater CTD - 00673287.bdo.nc - 23.97N, -83.47W - 1972-12-10\"', '\"Deepwater CTD - 87g1201.bdo.nc - 26.33N, -93.25W - 1987-11-29\"', '\"Deepwater CTD - d94i020.bdo.nc - 27.86N, -90.5W - 1994-07-29\"', '\"Deepwater CTD - 00648368.bdo.nc - 20.0N, -94.45W - 1972-01-13\"', '\"Deepwater CTD - d93f165.bdo.nc - 27.1N, -96.21W - 1993-00-04\"', '\"Deepwater CTD - n4l11s12.ctd.nc - 27.5N, -84.89W - 1998-11-14\"', '\"Deepwater CTD - 03317854.ctd.nc - 26.36N, -93.58W - 1991-06-04\"', '\"Deepwater CTD - 00371515.bdo.nc - 24.0N, -93.08W - 1962-03-25\"', '\"Deepwater CTD - 00582210.bdo.nc - 23.97N, -85.75W - 1969-00-31\"', '\"Deepwater CTD - 00681514.bdo.nc - 23.48N, -85.72W - 1973-05-20\"', '\"Deepwater CTD - 00634569.bdo.nc - 25.97N, -91.28W - 1971-00-20\"', '\"Deepwater CTD - 00601254.bdo.nc - 25.63N, -85.07W - 1970-06-20\"', '\"Deepwater CTD - d94i007.bdo.nc - 27.87N, -92.86W - 1994-07-28\"', '\"Deepwater CTD - 00532211.bdo.nc - 23.52N, -83.32W - 1968-03-00\"', '\"Deepwater CTD - 90g1513a.ctd.nc - 25.67N, -88.67W - 1990-10-15\"', '\"Deepwater CTD - 00635153.bdo.nc - 23.97N, -90.33W - 1971-00-25\"', '\"Deepwater CTD - 03294083.ctd.nc - 24.92N, -92.78W - 1985-10-25\"', '\"Deepwater CTD - 00579835.bdo.nc - 19.63N, -94.4W - 1969-00-00\"', '\"Deepwater CTD - 53792.ctd.nc - 26.5N, -88.0W - 1992-04-28\"', '\"Deepwater CTD - 53783.ctd.nc - 29.0N, -87.0W - 1992-04-27\"', '\"Deepwater CTD - pe972206.ctd.nc - 28.5N, -88.85W - 1997-03-19\"', '\"Deepwater CTD - d94i013.ctd.nc - 27.94N, -91.54W - 1994-07-28\"', '\"Deepwater CTD - 00596907.bdo.nc - 21.68N, -85.99W - 1970-04-20\"', '\"Deepwater CTD - 03358714.ctd.nc - 22.0N, -94.0W - 1985-03-12\"', '\"Deepwater CTD - 00050236.bdo.nc - 23.53N, -87.0W - 1932-02-13\"', '\"Deepwater CTD - 93g0108.ctd.nc - 27.72N, -95.07W - 1993-01-13\"', '\"Deepwater CTD - 00456400.bdo.nc - 28.85N, -87.23W - 1965-00-22\"', '\"Deepwater CTD - 00731776.bdo.nc - 26.46N, -85.22W - 1976-02-26\"', '\"Deepwater CTD - 3_04_031.ctd.nc - 26.28N, -94.17W - 1992-11-18\"', '\"Deepwater CTD - 00856626.bdo.nc - 25.03N, -93.24W - 1985-10-25\"', '\"Deepwater CTD - d94h143.bdo.nc - 27.07N, -95.98W - 1994-05-05\"', '\"Deepwater CTD - d94h119.ctd.nc - 27.39N, -95.62W - 1994-05-03\"', '\"Deepwater CTD - 00601138.bdo.nc - 25.08N, -86.12W - 1970-06-19\"', '\"Deepwater CTD - 03358756.ctd.nc - 21.0N, -96.83W - 1985-03-16\"', '\"Deepwater CTD - 00020130.bdo.nc - 23.42N, -83.72W - 1922-02-02\"', '\"Deepwater CTD - 00643565.bdo.nc - 19.49N, -92.87W - 1971-11-00\"', '\"Deepwater CTD - 03260950.ctd.nc - 27.67N, -85.55W - 1979-04-29\"', '\"Deepwater CTD - 88g0547d.ctd.nc - 27.26N, -96.25W - 1988-10-23\"', '\"Deepwater CTD - d93f047.bdo.nc - 27.75N, -92.0W - 1993-07-29\"', '\"Deepwater CTD - 00618386.bdo.nc - 21.82N, -86.4W - 1971-03-00\"', '\"Deepwater CTD - 93g0106.bdo.nc - 27.24N, -94.98W - 1993-01-12\"', '\"Deepwater CTD - 00732170.bdo.nc - 27.6N, -94.96W - 1976-03-00\"', '\"Deepwater CTD - 00020134.bdo.nc - 23.67N, -82.52W - 1922-02-03\"', '\"Deepwater CTD - d93f085.ctd.nc - 27.75N, -93.0W - 1993-07-31\"', '\"Deepwater CTD - 00577148.bdo.nc - 24.5N, -91.5W - 1969-07-18\"', '\"Deepwater CTD - d94j054.bdo.nc - 27.75N, -93.0W - 1994-11-06\"', '\"Deepwater CTD - 00573794.bdo.nc - 28.16N, -86.93W - 1969-06-18\"', '\"Deepwater CTD - 03260512.ctd.nc - 25.5N, -84.37W - 1979-03-30\"', '\"Deepwater CTD - n1l06s19.ctd.nc - 28.66N, -87.19W - 1997-11-23\"', '\"Deepwater CTD - 03358743.ctd.nc - 21.0N, -94.0W - 1985-03-14\"', '\"Deepwater CTD - 00085440.bdo.nc - 27.8N, -89.93W - 1937-03-25\"', '\"Deepwater CTD - 90g1406.ctd.nc - 27.61N, -92.25W - 1990-10-03\"', '\"Deepwater CTD - 00682592.bdo.nc - 20.92N, -96.61W - 1973-06-03\"', '\"Deepwater CTD - 00531909.bdo.nc - 26.25N, -93.77W - 1968-03-05\"', '\"Deepwater CTD - 94g078b.ctd.nc - 27.23N, -96.14W - 1994-00-19\"', '\"Deepwater CTD - 03313300.ctd.nc - 28.05N, -89.43W - 1989-00-16\"', '\"Deepwater CTD - 00477645.bdo.nc - 27.37N, -88.78W - 1966-06-12\"', '\"Deepwater CTD - d93e135.ctd.nc - 27.81N, -95.06W - 1993-05-05\"', 'OCADS CTD Stations near California Current Ecosystem 1 Mooring (CCE1)', 'OCADS CTD Stations near California Current Ecosystem 2 Mooring (CCE2)', 'LOBO 2 Buoy Mid Damariscotta River', 'A01 Optode - Oxygen', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI7, 2022-08-04, 27.2652N 83.3168W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI2, 2022-08-04, 27.4587N 82.8448W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI4, 2022-08-04, 27.3817N 83.0332W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_TB10, 2022-08-03, 27.6197N 83.4883W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_057.2, 2022-08-07, 25.3505N 81.4875W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI9, 2022-08-04, 27.1937N 83.5053W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI8, 2022-08-04, 27.2273N 83.4105W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_CAL5, 2022-08-06, 26.1873N 82.2113W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_057.3, 2022-08-07, 25.3522N 81.6553W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_CAL3, 2022-08-06, 26.3438N 82.0412W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_057.1, 2022-08-07, 25.3515N 81.3345W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_CAL1, 2022-08-06, 26.4233N 81.9567W'])" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_out_final.keys()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's take a quick look at one of the DataFrames.\n", + "\n", + "Transpose it when we print, so we can see all the columns." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
01234
profileNaNNaNNaNNaNNaN
time (UTC)1968-01-20T03:14:07Z1968-01-20T03:14:07Z1968-01-20T03:14:07Z1968-01-20T03:14:07Z1968-01-20T03:14:07Z
latitude (degrees_north)29.247229.247229.247229.247229.2472
longitude (degrees_east)-87.888901-87.888901-87.888901-87.888901-87.888901
numberOfLevel351351351351351
depth (m)7.08.09.010.011.0
temperature (degree_C)20.82320.83200120.83720.83799920.854
salinity (PSU)35.32199935.33200135.33599935.33800135.345001
oxygen (milliliters per liter)4.594.624.634.634.75
nitrite (micromols)0.00.00.00.00.01
nitrate (micromols)0.080.080.110.110.1
phosphate (micromols)0.020.010.00.010.01
silicate (micromols)1.331.181.131.051.41
salinity2 (PSU)36.10300136.09299936.09400236.09600136.285999
qualityFlag0.00.00.00.00.0
instrumentNaNNaNNaNNaNNaN
instrument1NaNNaNNaNNaNNaN
instrument2NaNNaNNaNNaNNaN
instrument3NaNNaNNaNNaNNaN
instrument4NaNNaNNaNNaNNaN
instrument5NaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " 0 1 \\\n", + "profile NaN NaN \n", + "time (UTC) 1968-01-20T03:14:07Z 1968-01-20T03:14:07Z \n", + "latitude (degrees_north) 29.2472 29.2472 \n", + "longitude (degrees_east) -87.888901 -87.888901 \n", + "numberOfLevel 351 351 \n", + "depth (m) 7.0 8.0 \n", + "temperature (degree_C) 20.823 20.832001 \n", + "salinity (PSU) 35.321999 35.332001 \n", + "oxygen (milliliters per liter) 4.59 4.62 \n", + "nitrite (micromols) 0.0 0.0 \n", + "nitrate (micromols) 0.08 0.08 \n", + "phosphate (micromols) 0.02 0.01 \n", + "silicate (micromols) 1.33 1.18 \n", + "salinity2 (PSU) 36.103001 36.092999 \n", + "qualityFlag 0.0 0.0 \n", + "instrument NaN NaN \n", + "instrument1 NaN NaN \n", + "instrument2 NaN NaN \n", + "instrument3 NaN NaN \n", + "instrument4 NaN NaN \n", + "instrument5 NaN NaN \n", + "\n", + " 2 3 \\\n", + "profile NaN NaN \n", + "time (UTC) 1968-01-20T03:14:07Z 1968-01-20T03:14:07Z \n", + "latitude (degrees_north) 29.2472 29.2472 \n", + "longitude (degrees_east) -87.888901 -87.888901 \n", + "numberOfLevel 351 351 \n", + "depth (m) 9.0 10.0 \n", + "temperature (degree_C) 20.837 20.837999 \n", + "salinity (PSU) 35.335999 35.338001 \n", + "oxygen (milliliters per liter) 4.63 4.63 \n", + "nitrite (micromols) 0.0 0.0 \n", + "nitrate (micromols) 0.11 0.11 \n", + "phosphate (micromols) 0.0 0.01 \n", + "silicate (micromols) 1.13 1.05 \n", + "salinity2 (PSU) 36.094002 36.096001 \n", + "qualityFlag 0.0 0.0 \n", + "instrument NaN NaN \n", + "instrument1 NaN NaN \n", + "instrument2 NaN NaN \n", + "instrument3 NaN NaN \n", + "instrument4 NaN NaN \n", + "instrument5 NaN NaN \n", + "\n", + " 4 \n", + "profile NaN \n", + "time (UTC) 1968-01-20T03:14:07Z \n", + "latitude (degrees_north) 29.2472 \n", + "longitude (degrees_east) -87.888901 \n", + "numberOfLevel 351 \n", + "depth (m) 11.0 \n", + "temperature (degree_C) 20.854 \n", + "salinity (PSU) 35.345001 \n", + "oxygen (milliliters per liter) 4.75 \n", + "nitrite (micromols) 0.01 \n", + "nitrate (micromols) 0.1 \n", + "phosphate (micromols) 0.01 \n", + "silicate (micromols) 1.41 \n", + "salinity2 (PSU) 36.285999 \n", + "qualityFlag 0.0 \n", + "instrument NaN \n", + "instrument1 NaN \n", + "instrument2 NaN \n", + "instrument3 NaN \n", + "instrument4 NaN \n", + "instrument5 NaN " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_out_final[\"\\\"Deepwater CTD - pe972218.ctd.nc - 29.25N, -87.89W - 1997-03-21\\\"\"].head(5).T" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
latitude (degrees_north)longitude (degrees_east)
029.2472-87.888901
129.2472-87.888901
229.2472-87.888901
329.2472-87.888901
429.2472-87.888901
.........
34629.2472-87.888901
34729.2472-87.888901
34829.2472-87.888901
34929.2472-87.888901
35029.2472-87.888901
\n", + "

351 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " latitude (degrees_north) longitude (degrees_east)\n", + "0 29.2472 -87.888901\n", + "1 29.2472 -87.888901\n", + "2 29.2472 -87.888901\n", + "3 29.2472 -87.888901\n", + "4 29.2472 -87.888901\n", + ".. ... ...\n", + "346 29.2472 -87.888901\n", + "347 29.2472 -87.888901\n", + "348 29.2472 -87.888901\n", + "349 29.2472 -87.888901\n", + "350 29.2472 -87.888901\n", + "\n", + "[351 rows x 2 columns]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_out_final[\"\\\"Deepwater CTD - pe972218.ctd.nc - 29.25N, -87.89W - 1997-03-21\\\"\"][['latitude (degrees_north)','longitude (degrees_east)']]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Clean up the coordinates to make a map" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
latitude (degrees_north)longitude (degrees_east)
034.969100-76.907100
143.080000-70.934400
243.072200-70.869400
329.204134-82.769001
432.136667-81.121944
.........
46726.187333-82.211333
46825.352167-81.655333
46926.343833-82.041167
47025.351500-81.334500
47126.423333-81.956667
\n", + "

472 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " latitude (degrees_north) longitude (degrees_east)\n", + "0 34.969100 -76.907100\n", + "1 43.080000 -70.934400\n", + "2 43.072200 -70.869400\n", + "3 29.204134 -82.769001\n", + "4 32.136667 -81.121944\n", + ".. ... ...\n", + "467 26.187333 -82.211333\n", + "468 25.352167 -81.655333\n", + "469 26.343833 -82.041167\n", + "470 25.351500 -81.334500\n", + "471 26.423333 -81.956667\n", + "\n", + "[472 rows x 2 columns]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_coords = pd.DataFrame(columns=['latitude (degrees_north)','longitude (degrees_east)'])\n", + "\n", + "for key in df_out_final.keys():\n", + " df_coords = pd.concat([df_coords, df_out_final[key][['latitude (degrees_north)','longitude (degrees_east)']]])\n", + "\n", + "# drop all duplicates\n", + "df_coords_clean = df_coords.drop_duplicates(ignore_index=True)\n", + "\n", + "df_coords_clean" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Create a function for mapping" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "import geopandas as gpd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "def make_map(df):\n", + " # initialize an axis\n", + " fig, ax = plt.subplots(figsize=(8,6))# plot map on axis\n", + " countries = gpd.read_file( \n", + " gpd.datasets.get_path(\"naturalearth_lowres\"))\n", + "\n", + " countries[countries[\"name\"] == \"United States of America\"].plot(color=\"lightgrey\",\n", + " ax=ax)\n", + "\n", + " # plot points\n", + " df.plot(x=\"longitude (degrees_east)\", y=\"latitude (degrees_north)\", \n", + " kind=\"scatter\",\n", + " ax=ax)# add grid\n", + "\n", + " ax.grid(visible=True, alpha=0.5)\n", + "\n", + " return ax" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Make a map with the coordinates" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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ixcvZnBNY263G/X19QOuG8zIyEB2dnafnSWIUkn3phddXV0wm83JLoeIiBIs5vA6b948fP755xg3blwi6qEECgQCaGpqgt1u7/ccjUaDnJwc/nFCacVsNkMURbZkIyIaA6IKr2+99Vb43xdddBF+/vOfY9++fZg0aVKvmblLLrkkvhVSXLS3t6OhoaHXEgGVSgWtVguNRgONRsOZVkpbDK5ERGNDVOH10ksv7XXsvvvu63VMEIR+109ScomiiFAoFBFUNRoN17ISERFRWokqvB7fDovST0ZGRngjASIiIqJ0FXOS2bBhQ58tlXw+HzZs2BCXoij+BEFgcCUiIqK0F3Oaue6669DR0dHruNPpxHXXXReXooiIiIiI+hJzeO3vit6jR4/CaDTGpSgiIiIior5E3SprypQpEAQBgiDg29/+dsQONsFgEFVVVbjgggsSUiQRERERERBDeO3uOLBnzx7MmzcvYhcbhUKBkpIS/OAHP4h7gURERERE3aIOr/feey+CwSCKi4sxb9485ObmJrIuIiIiIqJeYlrzKpVKcfPNNw+4rSgRERERUaLEfMHWpEmTUFlZmYhaiIiIiIgGFHN4ffDBB3HXXXfh73//OxoaGuBwOCI+iIiIiIgSJeo1r926OwpccsklES2zultocXtYIiIiIkqUmMPrBx98kIg6iIiIiIgGFXN4nT17diLqICIiIiIaVMzhFQDa29vx/PPPY//+/RAEARMnTsT111/PHbaIiIiIKKFivmDr888/x/jx4/HYY4/BZrOhtbUVa9euxfjx47Fr165E1EhEREREBGAIM6933HEHLrnkEjz33HPhLWIDgQB++tOfYsmSJdi6dWvciyQiIiIiAoYQXj///POI4AoAMpkMy5Ytw9SpU+NaHBERERFRTzEvGzAYDDhy5Eiv47W1tdDr9XEpioiIiIioLzGH1x/96EdYuHAh/vznP6O2thZHjx7Fn/70J/z0pz/FggULElEjERERERGAISwb+PWvfw1BEHD11VcjEAgAAORyOX72s5/hoYceinuBRERERETdYg6vCoUCjz/+OFavXo3Dhw9DFEWUlZVBo9Ekoj4iIiIiorAh9XkFAI1Gg0mTJsWzFiIiIiKiAcUcXjs7O/HQQw/hX//6F5qbmxEKhSJur6ysjFtxREREREQ9xRxef/rTn2LLli246qqrkJub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KwsWiyXlc13Ml5GFQiHcf//9yM/Ph06nC1/p9qtf/QrPP/983AskIkonoigyvBIlUaosHbDZbCkRXOscfnxe14U6R//vCGk0GpSVlcFqtaZ8cAWGEF4feOABvPjii1izZg0UCkX4+KRJk/D73/8+rsUREaWbUCiUVuvaiEabVAivbW1tqK+vT2oNTm8Q9/yrCTe9VY8VHzTjprfqcc+/muDyftPpQKPRoLi4GKWlpVAqlUmsNjYxh9cNGzbg2WefxZVXXhmxFdvkyZPxn//8J67FERGlG866EiVXsttltba2oqGhIak1AMAj21qxpzHytdjT6MGaba3Q6/UYN24cxo0bB71enxazrT3FvCikrq4OZWVlvY6HQiFepEBEYx5/DhIlVzJnXtva2tDY2Ji05+9W5/BjV0PvEB8SgV0NHoS0Fmg0miRUFh8xz7yefPLJ+Oijj3odf/XVVzFlypS4FEVElK4480qUXIFAIGITgJF83qamphF/3r40OAf+OVTdlt7b6MY883rvvffiqquuQl1dHUKhEF5//XUcOHAAGzZswN///vdE1EhElDYYXomSz+v1jvjMYnNzM0Kh0Ig+Z39y9QPHuxJzem+hG3N4vfjii/HnP/8Zq1atgiAIuOeee3D66afjb3/7G+bOnZuIGomI0obL5Up2CURjns/nG3Z49fl8aGlp6bUMob8LMru6uob1fMOxq74LB1q9mGBR4vQ8NU4pzsKscj+2V7Qi2KNeqSBgZpkFpZYxFl4BYN68eZg3b168ayEiSmuhUAidnen9dhzRaDDc4Gq321FXVxenahKnwenHne80wuH9ZsbXoJTgzVuK8MSCKbht425sPdQSvm1mmQVPLEj/JZ6p0cWXiGgUcLlcbJNFlGQajSailedQ6HQ6SCSSlFkG0J/jgysAOLwhXPbMJ9h9z/nYsPAsVLV2orqtEyVmbdrPuHaLKryaTKao2yjYbLZhFURElK64ZIAo+YxG47AfQy6XQ6fTweFwxKGixNhV39UruHazu/346FALzi23otQyekJrt6jC67p168L/bmtrwwMPPIB58+Zh+vTpAICPP/4Y7777Ln71q18lpEgiolQniiKcTmeyyyAa8+IRXgFArVandHg90DpwS7BdR+w4t9w6QtWMrKjC6zXXXBP+9w9+8APcd999uPXWW8PHFi9ejCeffBLvvfce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fx4MBrF06dLwcy1btgyiKEbcRxRFrFmzBuPGjYNarcapp56Kv/zlLwO+Dq+88gpOPfVUFBQURBx/8cUXUVRUBI1Gg+9///toa2vrdd+//e1vOOOMM6BSqTBu3DisXLkSgUAgfPt//vMfnHPOOVCpVJg4cSLee+89CIKAv/71rwCA6upqCIKAV155BXPmzIFKpcIf//hHAMALL7yAk046CSqVCieeeCJ++9vfRjx3XV0dfvSjH8FkMsFsNmP+/Pmorq4O3/7hhx/irLPOglarRUZGBmbOnImampoBX4tov661a9di0qRJ0Gq1KCwsxKJFi+ByucK319TU4OKLL4bJZIJWq8XJJ5+Mf/7zn6iursZ5550HADCZTBAEAddee234fpdccgk2btwYVY1ElHwMr0Q0oq699lp8/vnneOutt/Dxxx9DFEV897vfjZj5c7vd+PWvf40//OEP2Lp1K44cOYK77rorfPvDDz+Ml156CS+88AK2b98Oh8MRDmZ9ef3111FQUID77rsPDQ0NEUF4MI8++ij+7//+D88//zy2bdsGm82GN954I+KcX/7yl3jhhRfw9NNP4+uvv8Ydd9yBn/zkJ9iyZUu/j7t161ZMnTo14tinn36K66+/HosWLcKePXtw3nnn4YEHHog4591338VPfvITLF68GPv27cPvfvc7vPjii3jwwQcBAKFQCJdeeik0Gg0+/fRTPPvss1i+fHmfNfziF7/A4sWLsX//fsybNw/PPfccli9fjgcffBD79+/HqlWr8Ktf/Qrr168HcGxczjvvPOh0OmzduhXbtm0L/3Hh8/kQCARw6aWXYvbs2fjyyy/x8ccf48Ybbwz/sTCQwb4uAJBIJPjNb36Dr776CuvXr8f777+PZcuWhW+/5ZZb4PV6sXXrVuzduxcPP/wwdDodCgsL8dprrwE4ts64oaEBjz/+ePh+Z511Fj777DN4vd5B6ySiFCASESXQ7Nmzxdtvv10URVE8ePCgCEDcvn17+PbW1lZRrVaLr7zyiiiKovjCCy+IAMSKiorwOU899ZSYnZ0d/jw7O1t85JFHwp8HAgGxqKhInD9/fp/PK4qiWFxcLD722GMRtd17773iqaeeGnHsscceE4uLi8Of5+bmig899FD4c7/fLxYUFISfy+VyiSqVStyxY0fE4yxcuFBcsGBBv6/LqaeeKt53330RxxYsWCBecMEFEcd+9KMfiUajMfz5ueeeK65atSrinD/84Q9ibm6uKIqi+Pbbb4symUxsaGgI375582YRgPjGG2+IoiiKVVVVIgBx3bp1EY9TWFgovvzyyxHH7r//fnH69OmiKIri888/L06YMEEMhULh271er6hWq8V3331XbGtrEwGIH374Yb9fd38G+7r68sorr4hmszn8+aRJk8QVK1b0ee4HH3wgAhDtdnuv2/7973+LAMTq6uqY6yaikSdLYm4mojFm//79kMlkmDZtWviY2WzGhAkTsH///vAxjUaD8ePHhz/Pzc1Fc3MzAKCjowNNTU0466yzwrdLpVKcccYZCIVCca23o6MDDQ0NmD59eviYTCbD1KlTw0sH9u3bB4/Hg7lz50bc1+fzYcqUKf0+dldXF1QqVcSx/fv34/vf/37EsenTp+Odd94Jf/7FF19g586dETOSwWAQHo8HbrcbBw4cQGFhIXJycsK393yteuo589vS0oLa2losXLgQN9xwQ/h4IBCA0WgMP3dFRUWvtcQejweHDx/G+eefj2uvvRbz5s3D3Llz8Z3vfAeXX345cnNz+30dov26NBoNPvjgA6xatQr79u2Dw+FAIBCAx+NBZ2cntFotFi9ejJ/97GfYtGkTvvOd7+AHP/gBJk+ePOhzq9VqAMdmloko9TG8EtGIEY9bK9rzeM+3luVyecTtgiD0uu/xb0X399gDkUgkve4X64VL3YH5H//4B/Lz8yNuUyqV/d7PYrHAbrdHHIvmawiFQli5ciUuu+yyXrepVKper+VAtFptxOMCwHPPPRfxxwVw7I+D7nPOOOOMPi9uslqtAI6tmV28eDHeeecd/PnPf8Yvf/lLbN68GWefffawvq6amhp897vfxc0334z7778fmZmZ2LZtGxYuXBges5/+9KeYN28e/vGPf2DTpk1YvXo1Hn30Udx2220DPrfNZov4GogotTG8EtGImThxIgKBAD799FPMmDEDANDW1oaDBw/ipJNOiuoxjEYjsrOz8dlnn+Hcc88FcGyGbvfu3b0uvupJoVAgGAxGHLNarWhsbIwIfHv27Il4rtzcXHzyySeYNWsWgGMzkV988QVOP/308NekVCpx5MgRzJ49O6qvAQCmTJmCffv2RRybOHEiPvnkk4hjx39++umn48CBAygrK+vzcU888UQcOXIETU1NyM7OBgDs3Llz0Hqys7ORn5+PyspKXHnllX2ec/rpp+PPf/4zsrKyYDAYBvzapkyZgrvvvhvTp0/Hyy+/PGh4Hezr+vzzzxEIBPDoo49CIjl2ucYrr7zS67zCwkLcfPPNuPnmm3H33Xfjueeew2233QaFQgEAvb4HAOCrr75CQUEBLBbLgDUSUWpgeCWiEVNeXo758+fjhhtuwO9+9zvo9Xr8z//8D/Lz8zF//vyoH+e2227D6tWrUVZWhhNPPBFPPPEE7Hb7gDOOJSUl2Lp1K3784x9DqVTCYrFgzpw5aGlpwZo1a/D//t//wzvvvIO33347IpjdfvvteOihh1BeXo6TTjoJa9eujegVqtfrcdddd+GOO+5AKBTCOeecA4fDgR07dkCn0+Gaa67ps5558+bhpz/9KYLBYHhmc/HixZgxYwbWrFmDSy+9FJs2bYpYMgAc60v6ve99D4WFhfjhD38IiUSCL7/8Env37sUDDzyAuXPnYvz48bjmmmuwZs0aOJ3O8AVbg83IrlixAosXL4bBYMCFF14Ir9eLzz//HHa7HUuXLsWVV16JRx55BPPnz8d9992HgoICHDlyBK+//jp+/vOfw+/349lnn8Ull1yCvLw8HDhwAAcPHsTVV1894PNG83WNHz8egUAATzzxBC6++GJs374dzzzzTMRjLFmyBBdeeCFOOOEE2O12vP/+++E/ioqLiyEIAv7+97/ju9/9LtRqNXQ6HQDgo48+wvnnnz9ojUSUIpK22paIxoTjL5yy2WziVVddJRqNRlGtVovz5s0TDx48GL79hRdeiLhASRRF8Y033hB7/rjy+/3irbfeKhoMBtFkMom/+MUvxB/+8Ifij3/8436f9+OPPxYnT54sKpXKiMd6+umnxcLCQlGr1YpXX321+OCDD0ZcsOX3+8Xbb79dNBgMYkZGhrh06VLx6quvjrg4LBQKiY8//rg4YcIEUS6Xi1arVZw3b564ZcuWfl+XQCAg5ufni++8807E8eeff14sKCgQ1Wq1ePHFF4u//vWve70e77zzjjhjxgxRrVaLBoNBPOuss8Rnn302fPv+/fvFmTNnigqFQjzxxBPFv/3tbyKA8HN1X7C1e/fuXnW99NJL4mmnnSYqFArRZDKJs2bNEl9//fXw7Q0NDeLVV18tWiwWUalUiuPGjRNvuOEGsaOjQ2xsbBQvvfRSMTc3V1QoFGJxcbF4zz33iMFgsN/XIZava+3atWJubm74+2bDhg0RF2Hdeuut4vjx40WlUilarVbxqquuEltbW8P3v++++8ScnBxREATxmmuuEUVRFLu6ukSDwSB+/PHHUdVIRMkniOIQFooREaWQUCiEk046CZdffnnErlqp7re//S3efPNNvPvuuwl9nu3bt+Occ85BRUVFxIVwBDz11FN48803sWnTpmSXQkRR4rIBIko7NTU12LRpE2bPng2v14snn3wSVVVVuOKKK5JdWkxuvPFG2O12OJ3OuO4G9sYbb0Cn06G8vBwVFRW4/fbbMXPmTAbXPsjlcjzxxBPJLoOIYsCZVyJKO7W1tfjxj3+Mr776CqIo4pRTTsFDDz0UvqhqrNuwYQPuv/9+1NbWwmKx4Dvf+Q4effRRmM3mpNV08skn97vT1u9+97t+LxIjIjoewysRESVcTU1Nv23IsrOz4zrzTESjG8MrEREREaUNSbILICIiIiKKFsMrEREREaUNhlciIiIiShsMr0RERESUNhheiYiIiChtMLwSERERUdpgeCUiIiKitMHwSkRERERp4/8DBw7XGLnmGAcAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "make_map(df_coords_clean)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Lets explore those points on an interactive map\n", + "\n", + "Using [`geopandas.explore()`](https://geopandas.org/en/stable/docs/reference/api/geopandas.GeoDataFrame.explore.html)." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
Make this Notebook Trusted to load map: File -> Trust Notebook
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "gdf = gpd.GeoDataFrame(\n", + " df_coords_clean, geometry=gpd.points_from_xy(df_coords_clean['longitude (degrees_east)'], df_coords_clean['latitude (degrees_north)']), crs=\"EPSG:4326\"\n", + ")\n", + "\n", + "gdf.explore()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "colab": { + "authorship_tag": "ABX9TyOq6Zm4CP25L4Z2jB+P61RB", + "include_colab_link": true, + "provenance": [] + }, + "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.8" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} From 85f08d9279bd04153bfb1f1bf0d7920e8a1fe517 Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:10:50 -0400 Subject: [PATCH 3/4] removing colab bagde --- .../2024-09-17-CKAN_API_Query.ipynb | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb b/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb index 7ae04e61..fb8fc543 100644 --- a/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb +++ b/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb @@ -1,15 +1,5 @@ { "cells": [ - { - "cell_type": "markdown", - "metadata": { - "colab_type": "text", - "id": "view-in-github" - }, - "source": [ - "\"Open" - ] - }, { "cell_type": "markdown", "metadata": { @@ -2354,7 +2344,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.8" + "version": "3.11.0" } }, "nbformat": 4, From 5537036e377d4784f0c4d60ece0f8675aa477259 Mon Sep 17 00:00:00 2001 From: Mathew Biddle <8480023+MathewBiddle@users.noreply.github.com> Date: Wed, 18 Sep 2024 10:50:30 -0400 Subject: [PATCH 4/4] adding more context updating environment files for ckanapi --- .binder/environment-python_and_r.yml | 1 + .binder/environment.yml | 1 + .../2024-09-17-CKAN_API_Query.ipynb | 954 ++++++------------ 3 files changed, 318 insertions(+), 638 deletions(-) diff --git a/.binder/environment-python_and_r.yml b/.binder/environment-python_and_r.yml index 6442dad6..2383262f 100644 --- a/.binder/environment-python_and_r.yml +++ b/.binder/environment-python_and_r.yml @@ -10,6 +10,7 @@ dependencies: - cc-plugin-ncei - cf_xarray - cftime + - ckanapi - compliance-checker - cython - descartes diff --git a/.binder/environment.yml b/.binder/environment.yml index 78f9e7f9..abf5e3ca 100644 --- a/.binder/environment.yml +++ b/.binder/environment.yml @@ -10,6 +10,7 @@ dependencies: - cc-plugin-ncei - cf_xarray - cftime + - ckanapi - compliance-checker - descartes - easyargs diff --git a/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb b/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb index fb8fc543..58a9d2cf 100644 --- a/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb +++ b/jupyterbook/content/code_gallery/data_access_notebooks/2024-09-17-CKAN_API_Query.ipynb @@ -1,14 +1,5 @@ { "cells": [ - { - "cell_type": "markdown", - "metadata": { - "id": "Dl6UQcydrdtx" - }, - "source": [ - "Search [IOOS Data Catalog](https://data.ioos.us/) for CF standard names that contain `oxygen` and `sea_water`." - ] - }, { "cell_type": "code", "execution_count": 1, @@ -21,7 +12,7 @@ }, "outputs": [], "source": [ - "# For Google Colab, uncomment the lines below\n", + "# For Google Colab\n", "\n", "import subprocess\n", "import sys\n", @@ -55,6 +46,35 @@ "_colab_install_missing_deps(deps)" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Programmatically query the IOOS Data Catalog for a specific observation type" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Created: 2024-09-17\n", + "\n", + "Updated: 2024-09-18\n", + "\n", + "Author: [Mathew Biddle](mailto:mathew.biddle@noaa.gov)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Dl6UQcydrdtx" + }, + "source": [ + "In this notebook we highlight the ability to search the [IOOS Data Catalog](https://data.ioos.us/) for a specific subset of observations using the [CKAN](https://ckan.org/) web accessible Application Programming Interface (API). \n", + "\n", + "For this example, we want to look for observations of oxygen in the water column across the IOOS Catalog. As part of the [IOOS Metadata Profile](https://ioos.github.io/ioos-metadata/), which the US IOOS community uses to publish datasets, we know that each Regional Association and DAC will be following the [Climate and Forecast (CF) Conventions](http://cfconventions.org/) and using CF `standard_names` to describe their datasets. So, with that assumption, we can search across the IOOS Data catalog for datasets with the CF standard names that contain `oxygen` and `sea_water`. Then, we can build a simple map to show the geographical distribution of those datasets." + ] + }, { "cell_type": "markdown", "metadata": { @@ -80,7 +100,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 2, @@ -140,7 +160,7 @@ "source": [ "## How many datasets are we searching across?\n", "\n", - "Grab all the datasets available." + "Grab all the datasets available and return the count." ] }, { @@ -157,7 +177,7 @@ { "data": { "text/plain": [ - "43058" + "43574" ] }, "execution_count": 4, @@ -179,7 +199,7 @@ "source": [ "## Grab the most recent applicable CF standard names\n", "\n", - "Collect CF standard names that contain `oxygen` and `sea_water` from the CF standard name list." + "Collect [CF standard names](https://cfconventions.org/Data/cf-standard-names/current/build/cf-standard-name-table.html) that contain `oxygen` and `sea_water` from the CF standard name list." ] }, { @@ -194,6 +214,13 @@ "outputId": "9d2c266f-755a-42dc-9b5e-40607552c56f" }, "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CF Standard Name Table: 86\n" + ] + }, { "data": { "text/html": [ @@ -324,10 +351,14 @@ "\n", "url = \"https://cfconventions.org/Data/cf-standard-names/current/src/cf-standard-name-table.xml\"\n", "\n", + "tbl_version = pd.read_xml(url, xpath=\"./*\")['version_number'][0].astype(int)\n", + "\n", "df = pd.read_xml(url, xpath=\"entry\")\n", "\n", "std_names = df.loc[(df['id'].str.contains('oxygen') & df['id'].str.contains('sea_water'))]\n", "\n", + "print('CF Standard Name Table: {}'.format(tbl_version))\n", + "\n", "std_names[['id','description']]" ] }, @@ -337,9 +368,9 @@ "id": "G-KxN2RlpLOu" }, "source": [ - "## Search across IOOS Data Catalog\n", + "## Search across IOOS Data Catalog using CKAN API\n", "\n", - "Search IOOS Data Catalog for CF standard names that match those above." + "Search the IOOS Data Catalog for CF standard names that match those above." ] }, { @@ -615,7 +646,7 @@ "source": [ "## Do some summarizing of the responses\n", "\n", - "How many orgs have dissolved O2 data?" + "The DataFrame of the matching datasets is quite large. I wonder what the distribution of those datasets across organizations looks like? Let's use [pandas.groupby()](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.groupby.html) to generate some statistics about how many datasets are provided, matching our criteria, by which organization." ] }, { @@ -726,17 +757,129 @@ { "cell_type": "markdown", "metadata": { - "id": "yVz8vdNkEt6X" + "id": "t9PwQW_7Gj0a" }, "source": [ - "## Digging into the duplicates we have.\n", + "## Drop the Glider DAC data\n", "\n", - "How many of those are unique? The search above looked for all cf standard names for dissolved Oxygen. We might have some duplicate dataset returns, which means the same dataset might have multiple oxygen variables. So, let's filter down just to the unique datasets to query for data." + "Glider DAC data are already making it to NCEI, so we can drop those entries." ] }, { "cell_type": "code", "execution_count": 8, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 423 + }, + "id": "u0y8KMRYGhl9", + "outputId": "21f54f00-02e1-497b-a45e-83ee0004ca4b" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titleurlstd_name
org
CeNCOOS222
GCOOS220822082208
NERACOOS282828
PacIOOS161616
SECOORA606606606
\n", + "
" + ], + "text/plain": [ + " title url std_name\n", + "org \n", + "CeNCOOS 2 2 2\n", + "GCOOS 2208 2208 2208\n", + "NERACOOS 28 28 28\n", + "PacIOOS 16 16 16\n", + "SECOORA 606 606 606" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_out_no_glider = df_out.loc[~df_out['org'].str.contains('Glider DAC')]\n", + "df_out_no_glider.groupby(by='org').count()" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "yVz8vdNkEt6X" + }, + "source": [ + "## Digging into some of the nuances\n", + "\n", + "There are still quite a lot of datasets from each organization. As our search above looked for each CF standard_name across all the datasets, there might be duplicate datasets which have multiple matching CF standard names. ie. one dataset might have both `mass_concentration_of_oxygen_in_sea_water` and `fractional_saturation_of_oxygen_in_sea_water`, but we only need to know that it's one dataset.\n", + "\n", + "As we only need to know about the unique datasets, let's count how many unique dataset urls we have." + ] + }, + { + "cell_type": "code", + "execution_count": 9, "metadata": { "colab": { "base_uri": "https://localhost:8080/", @@ -816,22 +959,22 @@ " ...\n", " \n", " \n", - " https://gliders.ioos.us/erddap/tabledap/unit_648-20230324T1507\n", - " 2\n", - " 2\n", - " 2\n", + " https://gcoos5.geos.tamu.edu/erddap/tabledap/deepwater_pe972250_ctd\n", + " 6\n", + " 6\n", + " 6\n", " \n", " \n", - " https://gliders.ioos.us/erddap/tabledap/uvi_01-20230921T1324\n", + " https://gcoos5.geos.tamu.edu/erddap/tabledap/deepwater_pe972274_ctd\n", " 6\n", " 6\n", " 6\n", " \n", " \n", - " https://gliders.ioos.us/erddap/tabledap/uvi_01-20240809T1334\n", - " 2\n", - " 2\n", - " 2\n", + " https://gcoos5.geos.tamu.edu/erddap/tabledap/deepwater_st093lay_ctd\n", + " 6\n", + " 6\n", + " 6\n", " \n", " \n", " https://pae-paha.pacioos.hawaii.edu/erddap/tabledap/hui_water_quality\n", @@ -847,7 +990,7 @@ " \n", " \n", "\n", - "

1216 rows × 3 columns

\n", + "

422 rows × 3 columns

\n", "" ], "text/plain": [ @@ -859,24 +1002,22 @@ "http://www.neracoos.org/erddap/tabledap/LOBO_CS... 1 1 1\n", "http://www.neracoos.org/erddap/tabledap/URI_168... 16 16 16\n", "... ... ... ...\n", - "https://gliders.ioos.us/erddap/tabledap/unit_64... 2 2 2\n", - "https://gliders.ioos.us/erddap/tabledap/uvi_01-... 6 6 6\n", - "https://gliders.ioos.us/erddap/tabledap/uvi_01-... 2 2 2\n", + "https://gcoos5.geos.tamu.edu/erddap/tabledap/de... 6 6 6\n", + "https://gcoos5.geos.tamu.edu/erddap/tabledap/de... 6 6 6\n", + "https://gcoos5.geos.tamu.edu/erddap/tabledap/de... 6 6 6\n", "https://pae-paha.pacioos.hawaii.edu/erddap/tabl... 8 8 8\n", "https://pae-paha.pacioos.hawaii.edu/erddap/tabl... 8 8 8\n", "\n", - "[1216 rows x 3 columns]" + "[422 rows x 3 columns]" ] }, - "execution_count": 8, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "df_group = df_out.groupby(by='url').count()\n", - "\n", - "df_group" + "df_out_no_glider.groupby(by='url').count()" ] }, { @@ -885,12 +1026,12 @@ "source": [ "## Drop duplicate records\n", "\n", - "We identify duplicates by looking at the URL, which should be unique for each dataset." + "As you can see above, there are a lot of duplicate dataset urls which we can simplify down. We identify duplicates by looking at the URL, which should be unique for each dataset, and drop the duplicates." ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "metadata": { "colab": { "base_uri": "https://localhost:8080/", @@ -951,17 +1092,17 @@ " \n", " \n", " 0\n", - " um_242-20221205T1648-delayed\n", - " https://gliders.ioos.us/erddap/tabledap/um_242...\n", - " Glider DAC\n", - " fractional_saturation_of_oxygen_in_sea_water\n", + " WACCASASSA RIVER NR GULF HAMMOCK, FLA. (USGS 0...\n", + " https://erddap.secoora.org/erddap/tabledap/gov...\n", + " SECOORA\n", + " mass_concentration_of_oxygen_in_sea_water\n", " \n", " \n", " 0\n", - " ru30-20221011T1527-delayed\n", - " https://gliders.ioos.us/erddap/tabledap/ru30-2...\n", - " Glider DAC\n", - " fractional_saturation_of_oxygen_in_sea_water\n", + " LITTLE BACK RIVER AT HOG ISLAND, NEAR SAVANNAH...\n", + " https://erddap.secoora.org/erddap/tabledap/gov...\n", + " SECOORA\n", + " mass_concentration_of_oxygen_in_sea_water\n", " \n", " \n", " ...\n", @@ -1007,7 +1148,7 @@ " \n", " \n", "\n", - "

1216 rows × 4 columns

\n", + "

422 rows × 4 columns

\n", "" ], "text/plain": [ @@ -1015,8 +1156,8 @@ "0 Neuse River near the south shore (ModMon 96) \n", "0 Great Bay,NH. Lamprey River WQ station \n", "0 Great Bay,NH. Great Bay WQ station \n", - "0 um_242-20221205T1648-delayed \n", - "0 ru30-20221011T1527-delayed \n", + "0 WACCASASSA RIVER NR GULF HAMMOCK, FLA. (USGS 0... \n", + "0 LITTLE BACK RIVER AT HOG ISLAND, NEAR SAVANNAH... \n", ".. ... \n", "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", @@ -1024,25 +1165,25 @@ "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", "\n", - " url org \\\n", - "0 https://erddap.secoora.org/erddap/tabledap/neu... SECOORA \n", - "0 http://www.neracoos.org/erddap/tabledap/GRBLRW... NERACOOS \n", - "0 http://www.neracoos.org/erddap/tabledap/GRBGBW... NERACOOS \n", - "0 https://gliders.ioos.us/erddap/tabledap/um_242... Glider DAC \n", - "0 https://gliders.ioos.us/erddap/tabledap/ru30-2... Glider DAC \n", - ".. ... ... \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + " url org \\\n", + "0 https://erddap.secoora.org/erddap/tabledap/neu... SECOORA \n", + "0 http://www.neracoos.org/erddap/tabledap/GRBLRW... NERACOOS \n", + "0 http://www.neracoos.org/erddap/tabledap/GRBGBW... NERACOOS \n", + "0 https://erddap.secoora.org/erddap/tabledap/gov... SECOORA \n", + "0 https://erddap.secoora.org/erddap/tabledap/gov... SECOORA \n", + ".. ... ... \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", + "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", "\n", " std_name \n", "0 fractional_saturation_of_oxygen_in_sea_water \n", "0 fractional_saturation_of_oxygen_in_sea_water \n", "0 fractional_saturation_of_oxygen_in_sea_water \n", - "0 fractional_saturation_of_oxygen_in_sea_water \n", - "0 fractional_saturation_of_oxygen_in_sea_water \n", + "0 mass_concentration_of_oxygen_in_sea_water \n", + "0 mass_concentration_of_oxygen_in_sea_water \n", ".. ... \n", "0 volume_fraction_of_oxygen_in_sea_water \n", "0 volume_fraction_of_oxygen_in_sea_water \n", @@ -1050,18 +1191,18 @@ "0 volume_fraction_of_oxygen_in_sea_water \n", "0 volume_fraction_of_oxygen_in_sea_water \n", "\n", - "[1216 rows x 4 columns]" + "[422 rows x 4 columns]" ] }, - "execution_count": 9, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "df_out_nodups = df_out.drop_duplicates(subset=['url'],keep='last')\n", + "df_out_nodups_no_glider = df_out_no_glider.drop_duplicates(subset=['url'],keep='last')\n", "\n", - "df_out_nodups" + "df_out_nodups_no_glider" ] }, { @@ -1072,12 +1213,14 @@ "source": [ "## How many endpoints are not ERDDAP?\n", "\n", - "Just to see what endpoints we're working with, let's show endpoints that aren't ERDDAP." + "Now we have a unique list of datasets which match our CF standard name criteria. Since we have some background in using [ERDDAP to query for data](https://ioos.github.io/ioos_code_lab/content/code_gallery/data_access_notebooks/2017-03-21-ERDDAP_IOOS_Sensor_Map.html), let's take a look at what other endpoints each of the datasets are using.\n", + "\n", + "_Hint: We know ERDDAP systems typically have `erddap` in their urls._" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 11, "metadata": { "colab": { "base_uri": "https://localhost:8080/", @@ -1125,36 +1268,36 @@ "Index: []" ] }, - "execution_count": 10, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "df_out_nodups.loc[~df_out_nodups['url'].str.contains('erddap')]" + "df_out_nodups_no_glider.loc[~df_out_nodups_no_glider['url'].str.contains('erddap')]" ] }, { "cell_type": "markdown", "metadata": { - "id": "t9PwQW_7Gj0a" + "id": "f_PGG_wsHYwF" }, "source": [ - "## Drop the Glider DAC data\n", + "## What's the remaining distribution?\n", "\n", - "Glider DAC is already making it to NCEI, so we can drop those entries." + "This is the distribution of unique datasets found in the IOOS Data Catalog which have a CF Standard Name that contains the work `oxygen` and `sea_water`. We've dropped out the Glider DAC datasets as, theoretically, those are in NCEI already." ] }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 12, "metadata": { "colab": { "base_uri": "https://localhost:8080/", - "height": 423 + "height": 331 }, - "id": "u0y8KMRYGhl9", - "outputId": "21f54f00-02e1-497b-a45e-83ee0004ca4b" + "id": "fRHL-7lPGwOL", + "outputId": "b72e8a38-1e63-44b1-9644-5eaa7df9abc6" }, "outputs": [ { @@ -1180,225 +1323,39 @@ " \n", " title\n", " url\n", - " org\n", " std_name\n", " \n", + " \n", + " org\n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", - " 0\n", - " Neuse River near the south shore (ModMon 96)\n", - " https://erddap.secoora.org/erddap/tabledap/neu...\n", - " SECOORA\n", - " fractional_saturation_of_oxygen_in_sea_water\n", + " CeNCOOS\n", + " 2\n", + " 2\n", + " 2\n", " \n", " \n", - " 0\n", - " Great Bay,NH. Lamprey River WQ station\n", - " http://www.neracoos.org/erddap/tabledap/GRBLRW...\n", - " NERACOOS\n", - " fractional_saturation_of_oxygen_in_sea_water\n", + " GCOOS\n", + " 378\n", + " 378\n", + " 378\n", " \n", " \n", - " 0\n", - " Great Bay,NH. Great Bay WQ station\n", - " http://www.neracoos.org/erddap/tabledap/GRBGBW...\n", - " NERACOOS\n", - " fractional_saturation_of_oxygen_in_sea_water\n", + " NERACOOS\n", + " 5\n", + " 5\n", + " 5\n", " \n", " \n", - " 0\n", - " WACCASASSA RIVER NR GULF HAMMOCK, FLA. (USGS 0...\n", - " https://erddap.secoora.org/erddap/tabledap/gov...\n", - " SECOORA\n", - " mass_concentration_of_oxygen_in_sea_water\n", - " \n", - " \n", - " 0\n", - " LITTLE BACK RIVER AT HOG ISLAND, NEAR SAVANNAH...\n", - " https://erddap.secoora.org/erddap/tabledap/gov...\n", - " SECOORA\n", - " mass_concentration_of_oxygen_in_sea_water\n", - " \n", - " \n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " \n", - " \n", - " 0\n", - " Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...\n", - " https://gcoos5.geos.tamu.edu/erddap/tabledap/W...\n", - " GCOOS\n", - " volume_fraction_of_oxygen_in_sea_water\n", - " \n", - " \n", - " 0\n", - " Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...\n", - " https://gcoos5.geos.tamu.edu/erddap/tabledap/W...\n", - " GCOOS\n", - " volume_fraction_of_oxygen_in_sea_water\n", - " \n", - " \n", - " 0\n", - " Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...\n", - " https://gcoos5.geos.tamu.edu/erddap/tabledap/W...\n", - " GCOOS\n", - " volume_fraction_of_oxygen_in_sea_water\n", - " \n", - " \n", - " 0\n", - " Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...\n", - " https://gcoos5.geos.tamu.edu/erddap/tabledap/W...\n", - " GCOOS\n", - " volume_fraction_of_oxygen_in_sea_water\n", - " \n", - " \n", - " 0\n", - " Walton-Smith CTD, WS22215, WS22215_2022_08_Wea...\n", - " https://gcoos5.geos.tamu.edu/erddap/tabledap/W...\n", - " GCOOS\n", - " volume_fraction_of_oxygen_in_sea_water\n", - " \n", - " \n", - "\n", - "

422 rows × 4 columns

\n", - "" - ], - "text/plain": [ - " title \\\n", - "0 Neuse River near the south shore (ModMon 96) \n", - "0 Great Bay,NH. Lamprey River WQ station \n", - "0 Great Bay,NH. Great Bay WQ station \n", - "0 WACCASASSA RIVER NR GULF HAMMOCK, FLA. (USGS 0... \n", - "0 LITTLE BACK RIVER AT HOG ISLAND, NEAR SAVANNAH... \n", - ".. ... \n", - "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", - "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", - "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", - "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", - "0 Walton-Smith CTD, WS22215, WS22215_2022_08_Wea... \n", - "\n", - " url org \\\n", - "0 https://erddap.secoora.org/erddap/tabledap/neu... SECOORA \n", - "0 http://www.neracoos.org/erddap/tabledap/GRBLRW... NERACOOS \n", - "0 http://www.neracoos.org/erddap/tabledap/GRBGBW... NERACOOS \n", - "0 https://erddap.secoora.org/erddap/tabledap/gov... SECOORA \n", - "0 https://erddap.secoora.org/erddap/tabledap/gov... SECOORA \n", - ".. ... ... \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", - "0 https://gcoos5.geos.tamu.edu/erddap/tabledap/W... GCOOS \n", - "\n", - " std_name \n", - "0 fractional_saturation_of_oxygen_in_sea_water \n", - "0 fractional_saturation_of_oxygen_in_sea_water \n", - "0 fractional_saturation_of_oxygen_in_sea_water \n", - "0 mass_concentration_of_oxygen_in_sea_water \n", - "0 mass_concentration_of_oxygen_in_sea_water \n", - ".. ... \n", - "0 volume_fraction_of_oxygen_in_sea_water \n", - "0 volume_fraction_of_oxygen_in_sea_water \n", - "0 volume_fraction_of_oxygen_in_sea_water \n", - "0 volume_fraction_of_oxygen_in_sea_water \n", - "0 volume_fraction_of_oxygen_in_sea_water \n", - "\n", - "[422 rows x 4 columns]" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df_out_nodups_no_glider = df_out_nodups.loc[~df_out_nodups['org'].str.contains('Glider DAC')]\n", - "df_out_nodups_no_glider" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "id": "f_PGG_wsHYwF" - }, - "source": [ - "## What's the remaining distribution?\n", - "\n", - "This is the distribution of unique datasets found in the IOOS Data Catalog which have a CF Standard Name that contains the work `oxygen` and `sea_water`. We've dropped out the Glider DAC datasets as, theoretically, those are in NCEI already." - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/", - "height": 331 - }, - "id": "fRHL-7lPGwOL", - "outputId": "b72e8a38-1e63-44b1-9644-5eaa7df9abc6" - }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", @@ -1429,30 +1386,6 @@ "df_out_nodups_no_glider.groupby(by='org').count()" ] }, - { - "cell_type": "markdown", - "metadata": { - "id": "Kpl4C1lOFHMV" - }, - "source": [ - "Let's print out the response as a csv to share." - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": { - "colab": { - "base_uri": "https://localhost:8080/" - }, - "id": "V2mxu3cn8-B3", - "outputId": "f63f2c25-410a-4c55-f47a-5d68b0af3a74" - }, - "outputs": [], - "source": [ - "# print(df_out_nodups_no_glider.to_csv(index=False))" - ] - }, { "cell_type": "markdown", "metadata": {}, @@ -1464,37 +1397,17 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 13, "metadata": { "id": "Wk9myBdgBUxH" }, "outputs": [], "source": [ - "df_out_final = {}\n", + "dict_out_final = {}\n", "\n", "for index,row in df_out_nodups_no_glider.iterrows():\n", " #print(row)\n", - " df_out_final['{}'.format(row['title'])] = pd.read_csv('{}.csvp'.format(row['url']), low_memory=False)" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "dict_keys(['Neuse River near the south shore (ModMon 96)', 'Great Bay,NH. Lamprey River WQ station', 'Great Bay,NH. Great Bay WQ station', 'WACCASASSA RIVER NR GULF HAMMOCK, FLA. (USGS 02313700)', 'LITTLE BACK RIVER AT HOG ISLAND, NEAR SAVANNAH, GA (USGS 021989793)', 'CRABTREE SWAMP AT CONWAY, SC (USGS 02110701)', 'Pamlico Sound at PS9 (ModMon)', 'St. Lucie Estuary - South Fork (SLE-SF)', 'Indian River Lagoon - Link Port (IRL-LP)', 'Indian River Lagoon - Sebastian (IRL-SB)', 'Indian River Lagoon - Jensen Beach (IRL-JB)', 'MIDDLE RIVER AT FISH HOLE AT PORT WENTWORTH, GA (USGS 02198955)', 'Indian River Lagoon - Vero Beach (IRL-VB)', 'Sanibel Dock', 'ST JOHNS R DAMES POINT BRIDGE AT JACKSONVILLE, FL (USGS 302309081333001)', 'New Pass Bridge', 'LAKE MATTAMUSKEET E OF NC HWY 94 NR FAIRFIELD, NC (USGS 0208458893)', 'COOPER R AT FILBIN CREEK AT NORTH CHARLESTON, SC (USGS 021720677)', 'Neuse River South River (ModMon 165)', 'Neuse River near the north shore (ModMon 95)', 'Pamlico Sound at PS1 (ModMon)', 'WACCAMAW R NR HAGLEY LAND. NR PAWLEYS ISLAND, SC (USGS 02110815)', 'Indian River Lagoon - Malabar (IRL-MB)', 'Pamlico Sound at PS8 (ModMon)', 'Pamlico Sound at PS2 (ModMon)', '2nd Avenue Pier', 'WANDO RIVER ABOVE MT PLEASANT, SC (USGS 021720698)', 'Pamlico Sound at PS3 (ModMon)', 'Apache Pier', 'Pamlico Sound at PS5 (ModMon)', 'Neuse River at Marker 9 (ModMon 120, AWS J9530000)', 'Indian River Lagoon - Titusville (IRL-TS)', 'SKRINE CREEK NEAR MCCLELLENVILLE, SC (USGS 330428079214800)', 'Neuse River near Janeiro (ModMon 140, AWS J9590000)', 'Neuse River at Marker 15 (ModMon 70, AWS J8903600)', 'St. Lucie Estuary - South Fork 2 (SLE-SF2)', 'COOPER RIVER AT U.S. HWY 17 AT CHARLESTON, SC (USGS 021720709)', 'PacIOOS Nearshore Sensor 012: Kalama Beach Park, Maui, Hawaii', 'URI 168 Mount View, Bottom Sonde', 'Hui O Ka Wai Ola Water Quality Data', '\"Deepwater CTD - 00370067.bdo.nc - 27.32N, -87.35W - 1962-03-03\"', '\"Deepwater CTD - n1l04s12.ctd.nc - 29.21N, -87.35W - 1997-11-24\"', '\"Deepwater CTD - 00830668.bdo.nc - 25.65N, -85.02W - 1983-03-20\"', '\"Deepwater CTD - 00589307.bdo.nc - 25.25N, -87.23W - 1969-11-25\"', '\"Deepwater CTD - 00530098.bdo.nc - 26.25N, -93.76W - 1968-02-16\"', '\"Deepwater CTD - 00633910.bdo.nc - 21.5N, -86.0W - 1971-00-16\"', '\"Deepwater CTD - 03358737.ctd.nc - 22.0N, -93.0W - 1985-03-14\"', '\"Deepwater CTD - 00586728.bdo.nc - 23.07N, -96.3W - 1969-10-24\"', '\"Deepwater CTD - 00071521.bdo.nc - 26.58N, -85.55W - 1935-04-11\"', '\"Deepwater CTD - 00731452.bdo.nc - 29.73N, -87.04W - 1976-02-18\"', '\"Deepwater CTD - 00498729.bdo.nc - 25.57N, -93.48W - 1967-03-04\"', '\"Deepwater CTD - d93e134.bdo.nc - 27.76N, -95.03W - 1993-05-05\"', '\"Deepwater CTD - d93g171.ctd.nc - 27.81N, -95.06W - 1993-11-17\"', '\"Deepwater CTD - 00635118.bdo.nc - 22.25N, -84.83W - 1971-00-24\"', '\"Deepwater CTD - 94g0505.ctd.nc - 24.96N, -85.0W - 1994-07-18\"', '\"Deepwater CTD - 92g0307a.ctd.nc - 27.79N, -95.05W - 1992-03-20\"', '\"Deepwater CTD - 00417315.bdo.nc - 26.02N, -95.09W - 1964-01-18\"', '\"Deepwater CTD - 00582905.bdo.nc - 28.25N, -88.38W - 1969-00-07\"', '\"Deepwater CTD - 53784.ctd.nc - 28.5N, -87.0W - 1992-04-27\"', '\"Deepwater CTD - d93e040.ctd.nc - 27.79N, -92.0W - 1993-04-29\"', '\"Deepwater CTD - 4_09_096.ctd.nc - 26.75N, -90.83W - 1993-02-16\"', '\"Deepwater CTD - pe972247.ctd.nc - 28.79N, -86.51W - 1997-03-26\"', '\"Deepwater CTD - 00417529.bdo.nc - 21.37N, -95.02W - 1964-01-22\"', '\"Deepwater CTD - 00050772.bdo.nc - 25.77N, -92.52W - 1932-04-17\"', '\"Deepwater CTD - 92g10014.ctd.nc - 27.76N, -91.74W - 1992-10-05\"', '\"Deepwater CTD - 00566676.bdo.nc - 23.48N, -84.13W - 1969-04-12\"', '\"Deepwater CTD - 03260506.ctd.nc - 25.0N, -85.02W - 1979-03-28\"', '\"Deepwater CTD - d93e088.bdo.nc - 27.66N, -94.22W - 1993-05-02\"', '\"Deepwater CTD - 00027.ctd.nc - 27.83N, -88.5W - 1994-04-20\"', '\"Deepwater CTD - 00548331.bdo.nc - 26.87N, -87.65W - 1968-00-25\"', '\"Deepwater CTD - 00476842.bdo.nc - 24.2N, -81.78W - 1966-06-03\"', '\"Deepwater CTD - 94g0841.ctd.nc - 28.1N, -89.98W - 1994-10-23\"', '\"Deepwater CTD - 00021.ctd.nc - 28.58N, -89.0W - 1994-04-19\"', '\"Deepwater CTD - 00602166.bdo.nc - 21.67N, -85.58W - 1970-06-29\"', '\"Deepwater CTD - d93g231.ctd.nc - 27.65N, -95.71W - 1993-11-21\"', '\"Deepwater CTD - n1l09s17.ctd.nc - 28.21N, -85.72W - 1997-11-19\"', '\"Deepwater CTD - pe972274.ctd.nc - 29.17N, -87.1W - 1997-03-24\"', '\"Deepwater CTD - 92g0204.ctd.nc - 24.75N, -90.1W - 1992-01-27\"', '\"Deepwater CTD - 00543125.bdo.nc - 21.6N, -85.63W - 1968-06-29\"', '\"Deepwater CTD - 00682507.bdo.nc - 22.3N, -96.53W - 1973-06-02\"', '\"Deepwater CTD - 87g1121.ctd.nc - 26.33N, -94.75W - 1987-11-22\"', '\"Deepwater CTD - 89g1519.ctd.nc - 25.66N, -94.75W - 1989-11-14\"', '\"Deepwater CTD - 5_07_075.ctd.nc - 26.28N, -92.17W - 1993-05-30\"', '\"Deepwater CTD - d93e133.ctd.nc - 27.72N, -95.01W - 1993-05-05\"', '\"Deepwater CTD - 00856608.bdo.nc - 23.41N, -93.24W - 1985-10-24\"', '\"Deepwater CTD - 00458827.bdo.nc - 24.73N, -86.83W - 1965-00-16\"', '\"Deepwater CTD - 00517804.bdo.nc - 26.5N, -93.13W - 1967-00-12\"', '\"Deepwater CTD - 00374916.bdo.nc - 24.58N, -84.0W - 1962-05-27\"', '\"Deepwater CTD - 7_12_117.ctd.nc - 27.77N, -88.83W - 1993-12-07\"', '\"Deepwater CTD - 03274373.ctd.nc - 26.08N, -84.84W - 1982-04-05\"', '\"Deepwater CTD - d93g068.bdo.nc - 27.94N, -91.54W - 1993-11-11\"', '\"Deepwater CTD - 00577082.bdo.nc - 23.39N, -90.05W - 1969-07-18\"', '\"Deepwater CTD - d93f201.bdo.nc - 26.53N, -96.33W - 1993-00-06\"', '\"Deepwater CTD - 00580119.bdo.nc - 22.0N, -94.4W - 1969-00-12\"', '\"Deepwater CTD - d93d058.ctd.nc - 27.97N, -90.5W - 1993-02-00\"', '\"Deepwater CTD - 00136389.bdo.nc - 27.45N, -86.45W - 1942-04-03\"', '\"Deepwater CTD - 03317083.ctd.nc - 27.18N, -92.33W - 1990-10-18\"', '\"Deepwater CTD - 00415671.bdo.nc - 26.67N, -95.03W - 1963-12-00\"', '\"Deepwater CTD - 00548949.bdo.nc - 25.47N, -88.57W - 1968-00-01\"', '\"Deepwater CTD - d93f048.bdo.nc - 27.79N, -92.0W - 1993-07-29\"', '\"Deepwater CTD - d92b002.bdo.nc - 27.74N, -94.2W - 1992-00-01\"', '\"Deepwater CTD - d94j007.bdo.nc - 27.87N, -92.86W - 1994-11-03\"', '\"Deepwater CTD - d93d001.bdo.nc - 27.66N, -94.22W - 1993-02-06\"', '\"Deepwater CTD - n4l01s04.ctd.nc - 28.9N, -88.98W - 1998-11-24\"', '\"Deepwater CTD - 00466692.bdo.nc - 27.55N, -92.69W - 1966-01-27\"', '\"Deepwater CTD - 00731871.bdo.nc - 24.85N, -84.32W - 1976-02-28\"', '\"Deepwater CTD - 00491398.bdo.nc - 23.75N, -85.98W - 1966-11-00\"', '\"Deepwater CTD - 00574425.bdo.nc - 26.23N, -88.36W - 1969-06-24\"', '\"Deepwater CTD - d93d053.bdo.nc - 27.97N, -91.32W - 1993-02-00\"', '\"Deepwater CTD - 03259980.ctd.nc - 27.68N, -85.68W - 1979-02-14\"', '\"Deepwater CTD - 3_13_133.ctd.nc - 28.76N, -88.16W - 1992-11-10\"', '\"Deepwater CTD - 00681503.bdo.nc - 23.54N, -85.6W - 1973-05-20\"', '\"Deepwater CTD - 03274413.ctd.nc - 26.57N, -84.86W - 1982-04-07\"', '\"Deepwater CTD - 00050632.bdo.nc - 20.48N, -95.4W - 1932-04-07\"', '\"Deepwater CTD - 91g0235.ctd.nc - 26.81N, -93.88W - 1991-03-06\"', '\"Deepwater CTD - 00516980.bdo.nc - 19.8N, -93.64W - 1967-00-05\"', '\"Deepwater CTD - 87g1204.ctd.nc - 26.4N, -93.23W - 1987-11-29\"', '\"Deepwater CTD - 90g1513.bdo.nc - 25.67N, -88.67W - 1990-07-15\"', '\"Deepwater CTD - 53870.ctd.nc - 27.0N, -91.0W - 1992-05-18\"', '\"Deepwater CTD - 00601128.bdo.nc - 25.17N, -86.4W - 1970-06-19\"', '\"Deepwater CTD - 03274381.ctd.nc - 26.13N, -84.45W - 1982-04-05\"', '\"Deepwater CTD - 00477629.bdo.nc - 27.58N, -88.08W - 1966-06-12\"', '\"Deepwater CTD - 00531070.bdo.nc - 24.5N, -89.5W - 1968-02-27\"', '\"Deepwater CTD - d93e151.bdo.nc - 27.52N, -95.79W - 1993-05-06\"', '\"Deepwater CTD - 00499867.bdo.nc - 22.87N, -85.4W - 1967-03-15\"', '\"Deepwater CTD - n4l06s13.ctd.nc - 29.13N, -86.79W - 1998-11-20\"', '\"Deepwater CTD - 00516847.bdo.nc - 20.76N, -95.18W - 1967-00-04\"', '\"Deepwater CTD - n1l01s05.ctd.nc - 28.8N, -88.94W - 1997-11-26\"', '\"Deepwater CTD - d94j144.bdo.nc - 26.02N, -95.97W - 1994-11-11\"', '\"Deepwater CTD - 00858525.bdo.nc - 25.4N, -96.02W - 1986-01-30\"', '\"Deepwater CTD - 00136381.bdo.nc - 27.35N, -86.53W - 1942-04-02\"', '\"Deepwater CTD - 00580370.bdo.nc - 25.62N, -94.33W - 1969-00-15\"', '\"Deepwater CTD - d94h048.bdo.nc - 27.75N, -92.0W - 1994-04-28\"', '\"Deepwater CTD - 00574194.bdo.nc - 24.52N, -87.7W - 1969-06-21\"', '\"Deepwater CTD - 00370087.bdo.nc - 28.53N, -87.3W - 1962-03-04\"', '\"Deepwater CTD - 00050228.bdo.nc - 23.75N, -85.15W - 1932-02-12\"', '\"Deepwater CTD - 00050637.bdo.nc - 19.67N, -95.9W - 1932-04-07\"', '\"Deepwater CTD - 87g1119.ctd.nc - 27.0N, -94.74W - 1987-11-22\"', '\"Deepwater CTD - 00601678.bdo.nc - 27.6N, -86.7W - 1970-06-24\"', '\"Deepwater CTD - 5_03_029.ctd.nc - 26.77N, -94.83W - 1993-06-02\"', '\"Deepwater CTD - 03274401.ctd.nc - 26.12N, -84.65W - 1982-04-06\"', '\"Deepwater CTD - 93g0105k.ctd.nc - 26.67N, -95.0W - 1993-01-11\"', '\"Deepwater CTD - 00830693.bdo.nc - 25.48N, -85.58W - 1983-03-20\"', '\"Deepwater CTD - n3l06s11.ctd.nc - 29.32N, -86.63W - 1998-00-02\"', '\"Deepwater CTD - d94i013.bdo.nc - 27.94N, -91.54W - 1994-07-28\"', '\"Deepwater CTD - 5_13_134.ctd.nc - 28.62N, -88.17W - 1993-05-25\"', '\"Deepwater CTD - d94i115.ctd.nc - 27.81N, -95.06W - 1994-00-03\"', '\"Deepwater CTD - 00582482.bdo.nc - 24.8N, -86.97W - 1969-00-02\"', '\"Deepwater CTD - 00601170.bdo.nc - 25.22N, -85.85W - 1970-06-19\"', '\"Deepwater CTD - 00580185.bdo.nc - 22.81N, -94.39W - 1969-00-13\"', '\"Deepwater CTD - d93d094.bdo.nc - 27.88N, -92.86W - 1993-02-11\"', '\"Deepwater CTD - 53811.ctd.nc - 27.0N, -93.0W - 1992-05-01\"', '\"Deepwater CTD - 00419713.bdo.nc - 21.95N, -93.3W - 1964-03-02\"', '\"Deepwater CTD - 00517232.bdo.nc - 21.13N, -92.84W - 1967-00-06\"', '\"Deepwater CTD - d94i145.bdo.nc - 26.02N, -96.09W - 1994-00-06\"', '\"Deepwater CTD - n4l08s13.ctd.nc - 28.4N, -86.21W - 1998-11-19\"', '\"Deepwater CTD - 90g1503.bdo.nc - 27.34N, -92.01W - 1990-07-13\"', '\"Deepwater CTD - 00858533.bdo.nc - 25.04N, -95.4W - 1986-01-30\"', '\"Deepwater CTD - 00517715.bdo.nc - 22.02N, -92.4W - 1967-00-11\"', '\"Deepwater CTD - 00830155.bdo.nc - 24.42N, -84.92W - 1983-03-10\"', '\"Deepwater CTD - pe972218.ctd.nc - 29.25N, -87.89W - 1997-03-21\"', '\"Deepwater CTD - 00838276.bdo.nc - 27.52N, -85.15W - 1983-11-18\"', '\"Deepwater CTD - 00062488.bdo.nc - 23.25N, -82.27W - 1934-03-04\"', '\"Deepwater CTD - 00726638.bdo.nc - 28.02N, -89.71W - 1975-00-26\"', '\"Deepwater CTD - 00155481.bdo.nc - 27.45N, -93.07W - 1947-03-00\"', '\"Deepwater CTD - 00459198.bdo.nc - 28.35N, -87.17W - 1965-00-20\"', '\"Deepwater CTD - 3_14_136.ctd.nc - 28.77N, -87.5W - 1992-11-12\"', '\"Deepwater CTD - 00682497.bdo.nc - 25.56N, -88.82W - 1973-06-02\"', '\"Deepwater CTD - 00096.ctd.nc - 26.0N, -88.0W - 1994-05-05\"', '\"Deepwater CTD - 03358719.ctd.nc - 23.0N, -96.0W - 1985-03-12\"', '\"Deepwater CTD - 00370003.bdo.nc - 24.8N, -87.35W - 1962-03-02\"', '\"Deepwater CTD - 00601038.bdo.nc - 26.67N, -84.58W - 1970-06-18\"', '\"Deepwater CTD - 00596937.bdo.nc - 21.58N, -86.28W - 1970-04-21\"', '\"Deepwater CTD - 00500069.bdo.nc - 23.97N, -82.98W - 1967-03-18\"', '\"Deepwater CTD - pe972231.ctd.nc - 29.09N, -87.36W - 1997-03-23\"', '\"Deepwater CTD - n2l01s04.ctd.nc - 28.89N, -88.98W - 1998-05-14\"', '\"Deepwater CTD - 94g0844.bdo.nc - 27.87N, -89.75W - 1994-10-24\"', '\"Deepwater CTD - 00477111.bdo.nc - 24.18N, -81.62W - 1966-06-06\"', '\"Deepwater CTD - 88g0507d.ctd.nc - 27.76N, -93.47W - 1988-10-17\"', '\"Deepwater CTD - 00095972.bdo.nc - 23.78N, -82.17W - 1938-03-25\"', '\"Deepwater CTD - 00050109.bdo.nc - 23.65N, -80.85W - 1932-01-26\"', '\"Deepwater CTD - 00585960.bdo.nc - 24.93N, -94.05W - 1969-10-16\"', '\"Deepwater CTD - 00548152.bdo.nc - 28.04N, -89.23W - 1968-00-23\"', '\"Deepwater CTD - 00369441.bdo.nc - 23.13N, -83.3W - 1962-02-19\"', '\"Deepwater CTD - 00371200.bdo.nc - 23.32N, -94.95W - 1962-03-20\"', '\"Deepwater CTD - d94h162.bdo.nc - 27.43N, -96.1W - 1994-05-06\"', '\"Deepwater CTD - 03252360.ctd.nc - 29.07N, -87.97W - 1977-07-21\"', '\"Deepwater CTD - 00152.ctd.nc - 26.02N, -95.0W - 1994-05-13\"', '\"Deepwater CTD - n3l03s09.ctd.nc - 29.2N, -87.89W - 1998-00-04\"', '\"Deepwater CTD - 00530610.bdo.nc - 24.5N, -87.87W - 1968-02-22\"', '\"Deepwater CTD - 00681652.bdo.nc - 21.88N, -85.5W - 1973-05-22\"', '\"Deepwater CTD - 00153.ctd.nc - 26.02N, -95.5W - 1994-05-13\"', '\"Deepwater CTD - 00601681.bdo.nc - 27.67N, -86.53W - 1970-06-24\"', '\"Deepwater CTD - d93e036.ctd.nc - 27.97N, -91.32W - 1993-04-28\"', '\"Deepwater CTD - 00371864.bdo.nc - 26.75N, -96.25W - 1962-03-31\"', '\"Deepwater CTD - d94h051.bdo.nc - 27.46N, -93.0W - 1994-04-29\"', '\"Deepwater CTD - d94j147.bdo.nc - 26.01N, -96.31W - 1994-11-11\"', '\"Deepwater CTD - 00071245.bdo.nc - 27.32N, -89.9W - 1935-03-26\"', '\"Deepwater CTD - 00459098.bdo.nc - 26.8N, -90.86W - 1965-00-19\"', '\"Deepwater CTD - 97g08_09.ctd.nc - 27.85N, -85.9W - 1997-00-18\"', '\"Deepwater CTD - d94i014.bdo.nc - 27.97N, -91.32W - 1994-07-28\"', '\"Deepwater CTD - 00601733.bdo.nc - 28.15N, -85.55W - 1970-06-24\"', '\"Deepwater CTD - 00537449.bdo.nc - 21.7N, -85.43W - 1968-05-00\"', '\"Deepwater CTD - 00377199.bdo.nc - 24.47N, -80.35W - 1962-06-22\"', '\"Deepwater CTD - 00596192.bdo.nc - 22.03N, -86.07W - 1970-04-00\"', '\"Deepwater CTD - n2l01s05.ctd.nc - 28.8N, -88.95W - 1998-05-14\"', '\"Deepwater CTD - d93g190.ctd.nc - 27.13N, -96.34W - 1993-11-19\"', '\"Deepwater CTD - 88g0547.bdo.nc - 27.26N, -96.25W - 1988-10-23\"', '\"Deepwater CTD - 00012.ctd.nc - 28.09N, -89.51W - 1994-04-18\"', '\"Deepwater CTD - 90g1025a.ctd.nc - 27.28N, -92.97W - 1990-07-14\"', '\"Deepwater CTD - 88g0523d.ctd.nc - 26.55N, -94.77W - 1988-10-19\"', '\"Deepwater CTD - 03260002.ctd.nc - 27.63N, -85.54W - 1979-02-15\"', '\"Deepwater CTD - 00537961.bdo.nc - 24.23N, -86.8W - 1968-05-13\"', '\"Deepwater CTD - 03260943.ctd.nc - 27.66N, -85.53W - 1979-04-29\"', '\"Deepwater CTD - 97g08_02.ctd.nc - 27.94N, -87.98W - 1997-00-00\"', '\"Deepwater CTD - 00837959.bdo.nc - 24.9N, -84.63W - 1983-11-12\"', '\"Deepwater CTD - 00858542.bdo.nc - 24.68N, -94.78W - 1986-01-30\"', '\"Deepwater CTD - 00843608.bdo.nc - 25.23N, -84.65W - 1984-05-14\"', '\"Deepwater CTD - 00530381.bdo.nc - 23.28N, -85.27W - 1968-02-19\"', '\"Deepwater CTD - n4l07s09.ctd.nc - 29.02N, -86.25W - 1998-11-19\"', '\"Deepwater CTD - 00837962.bdo.nc - 24.87N, -84.68W - 1983-11-12\"', '\"Deepwater CTD - pe972239.ctd.nc - 29.56N, -86.83W - 1997-03-26\"', '\"Deepwater CTD - d94j115.bdo.nc - 27.81N, -95.06W - 1994-11-00\"', '\"Deepwater CTD - 94g0852.ctd.nc - 28.5N, -89.65W - 1994-10-24\"', '\"Deepwater CTD - d94i117.bdo.nc - 27.63N, -94.96W - 1994-00-03\"', '\"Deepwater CTD - 03300533.ctd.nc - 25.17N, -92.0W - 1987-04-07\"', '\"Deepwater CTD - d93d103.ctd.nc - 27.75N, -93.0W - 1993-02-12\"', '\"Deepwater CTD - 00601550.bdo.nc - 27.0N, -87.47W - 1970-06-23\"', '\"Deepwater CTD - 00028.ctd.nc - 27.56N, -88.5W - 1994-04-21\"', '\"Deepwater CTD - pe972232.ctd.nc - 28.9N, -87.35W - 1997-03-23\"', '\"Deepwater CTD - 00377286.bdo.nc - 24.05N, -80.54W - 1962-06-23\"', '\"Deepwater CTD - 83121702.ctd.nc - 25.35N, -87.43W - 1983-12-17\"', '\"Deepwater CTD - 00635798.bdo.nc - 24.38N, -84.23W - 1971-00-29\"', '\"Deepwater CTD - d94j117.bdo.nc - 27.63N, -94.96W - 1994-11-00\"', '\"Deepwater CTD - d93g063.ctd.nc - 27.92N, -90.51W - 1993-11-10\"', '\"Deepwater CTD - 00576882.bdo.nc - 22.49N, -86.83W - 1969-07-16\"', '\"Deepwater CTD - 00548423.bdo.nc - 23.17N, -85.48W - 1968-00-26\"', '\"Deepwater CTD - d93e030.bdo.nc - 28.02N, -90.5W - 1993-04-28\"', '\"Deepwater CTD - 4_07_075.ctd.nc - 26.28N, -92.17W - 1993-02-18\"', '\"Deepwater CTD - 00468436.bdo.nc - 24.01N, -85.77W - 1966-02-16\"', '\"Deepwater CTD - 94g0806.ctd.nc - 28.61N, -89.94W - 1994-10-20\"', '\"Deepwater CTD - 00624791.bdo.nc - 22.62N, -91.73W - 1971-05-27\"', '\"Deepwater CTD - 00331473.bdo.nc - 24.67N, -84.52W - 1960-03-31\"', '\"Deepwater CTD - 00577268.bdo.nc - 24.2N, -84.17W - 1969-07-20\"', '\"Deepwater CTD - 90g10023.ctd.nc - 27.59N, -93.2W - 1990-07-14\"', '\"Deepwater CTD - 00537813.bdo.nc - 23.79N, -86.1W - 1968-05-11\"', '\"Deepwater CTD - 5_04_033.ctd.nc - 26.77N, -94.17W - 1993-06-02\"', '\"Deepwater CTD - 94g0501.ctd.nc - 24.59N, -84.0W - 1994-07-18\"', '\"Deepwater CTD - d94h018.bdo.nc - 27.66N, -90.5W - 1994-04-26\"', '\"Deepwater CTD - d94j166.bdo.nc - 27.76N, -95.29W - 1994-11-13\"', '\"Deepwater CTD - 00596166.bdo.nc - 21.67N, -86.36W - 1970-04-00\"', '\"Deepwater CTD - 00574654.bdo.nc - 26.29N, -89.95W - 1969-06-26\"', '\"Deepwater CTD - 00596280.bdo.nc - 24.19N, -83.33W - 1970-04-11\"', '\"Deepwater CTD - 00539426.bdo.nc - 24.7N, -89.65W - 1968-05-28\"', '\"Deepwater CTD - 00596220.bdo.nc - 22.9N, -84.97W - 1970-04-10\"', '\"Deepwater CTD - 00658194.bdo.nc - 21.0N, -96.27W - 1972-05-18\"', '\"Deepwater CTD - 00574820.bdo.nc - 28.26N, -88.37W - 1969-06-28\"', '\"Deepwater CTD - 00050735.bdo.nc - 22.25N, -93.3W - 1932-04-15\"', '\"Deepwater CTD - 53789.ctd.nc - 26.27N, -87.0W - 1992-04-28\"', '\"Deepwater CTD - 00466678.bdo.nc - 27.37N, -93.5W - 1966-01-26\"', '\"Deepwater CTD - 03274354.ctd.nc - 26.15N, -84.63W - 1982-04-04\"', '\"Deepwater CTD - 92g0214.ctd.nc - 27.25N, -93.01W - 1992-01-29\"', '\"Deepwater CTD - d94i121.bdo.nc - 27.52N, -95.79W - 1994-00-04\"', '\"Deepwater CTD - d94j162.ctd.nc - 27.43N, -96.11W - 1994-11-13\"', '\"Deepwater CTD - 00577408.bdo.nc - 24.87N, -93.18W - 1969-07-21\"', '\"Deepwater CTD - pe972250.ctd.nc - 29.17N, -86.09W - 1997-03-26\"', '\"Deepwater CTD - 00858562.bdo.nc - 24.59N, -95.7W - 1986-02-01\"', '\"Deepwater CTD - 92g0705d.ctd.nc - 26.67N, -95.0W - 1992-06-23\"', '\"Deepwater CTD - d93g235.ctd.nc - 27.84N, -94.81W - 1993-11-21\"', '\"Deepwater CTD - d94i162.bdo.nc - 27.43N, -96.1W - 1994-00-07\"', '\"Deepwater CTD - 00499778.bdo.nc - 22.3N, -85.62W - 1967-03-14\"', '\"Deepwater CTD - 88g0533d.ctd.nc - 27.04N, -95.5W - 1988-10-21\"', '\"Deepwater CTD - pe972212.ctd.nc - 28.92N, -88.36W - 1997-03-20\"', '\"Deepwater CTD - 00548855.bdo.nc - 26.03N, -84.35W - 1968-00-31\"', '\"Deepwater CTD - 06720481.bdo.nc - 23.33N, -82.35W - 1971-06-23\"', '\"Deepwater CTD - 00455479.bdo.nc - 25.65N, -91.71W - 1965-00-14\"', '\"Deepwater CTD - 00516500.bdo.nc - 26.77N, -95.11W - 1967-00-01\"', '\"Deepwater CTD - 96g06_07.ctd.nc - 28.69N, -88.69W - 1996-10-20\"', '\"Deepwater CTD - st093lay.ctd.nc - 27.0N, -90.0W - 1994-05-00\"', '\"Deepwater CTD - 00371808.bdo.nc - 27.33N, -94.93W - 1962-03-30\"', '\"Deepwater CTD - 00477677.bdo.nc - 26.92N, -90.17W - 1966-06-12\"', '\"Deepwater CTD - 00830654.bdo.nc - 25.78N, -84.57W - 1983-03-20\"', '\"Deepwater CTD - d94j053.bdo.nc - 27.66N, -93.0W - 1994-11-06\"', '\"Deepwater CTD - d94i050.bdo.nc - 27.55N, -92.0W - 1994-07-30\"', '\"Deepwater CTD - 00530665.bdo.nc - 26.75N, -87.74W - 1968-02-22\"', '\"Deepwater CTD - 93g0105d.ctd.nc - 26.67N, -95.0W - 1993-01-10\"', '\"Deepwater CTD - 00830381.bdo.nc - 24.27N, -87.6W - 1983-03-15\"', '\"Deepwater CTD - 00592626.bdo.nc - 24.97N, -90.17W - 1970-02-05\"', '\"Deepwater CTD - d94j146.bdo.nc - 26.01N, -96.19W - 1994-11-11\"', '\"Deepwater CTD - 00369488.bdo.nc - 24.32N, -83.37W - 1962-02-20\"', '\"Deepwater CTD - 00843761.bdo.nc - 23.22N, -85.02W - 1984-05-17\"', '\"Deepwater CTD - 00537481.bdo.nc - 21.67N, -86.08W - 1968-05-00\"', '\"Deepwater CTD - 53794.ctd.nc - 27.0N, -88.5W - 1992-04-29\"', '\"Deepwater CTD - 00858489.bdo.nc - 24.75N, -93.87W - 1986-01-28\"', '\"Deepwater CTD - n1l08s11.ctd.nc - 28.6N, -85.98W - 1997-11-21\"', '\"Deepwater CTD - d94i159.bdo.nc - 26.93N, -96.44W - 1994-00-06\"', '\"Deepwater CTD - 87g1205.bdo.nc - 26.5N, -93.2W - 1987-11-30\"', '\"Deepwater CTD - 06925070.bdo.nc - 25.36N, -84.39W - 1982-04-04\"', '\"Deepwater CTD - 00070756.bdo.nc - 24.18N, -82.72W - 1935-02-20\"', '\"Deepwater CTD - d93f048.ctd.nc - 27.79N, -92.0W - 1993-07-29\"', '\"Deepwater CTD - 00596574.bdo.nc - 23.19N, -83.97W - 1970-04-15\"', '\"Deepwater CTD - n2l06s17.ctd.nc - 28.83N, -87.05W - 1998-05-12\"', '\"Deepwater CTD - 4_13_133.ctd.nc - 28.76N, -88.16W - 1993-02-13\"', '\"Deepwater CTD - 4_07_073.ctd.nc - 26.77N, -92.17W - 1993-02-18\"', '\"Deepwater CTD - 53802.ctd.nc - 27.0N, -90.5W - 1992-04-30\"', '\"Deepwater CTD - 00596158.bdo.nc - 21.77N, -86.05W - 1970-04-00\"', '\"Deepwater CTD - 00732350.bdo.nc - 28.62N, -87.92W - 1976-03-17\"', '\"Deepwater CTD - d92c003.bdo.nc - 27.8N, -94.19W - 1992-11-05\"', '\"Deepwater CTD - d93e134.ctd.nc - 27.76N, -95.03W - 1993-05-05\"', '\"Deepwater CTD - 00083.ctd.nc - 27.0N, -86.0W - 1994-05-02\"', '\"Deepwater CTD - 3_02_010.ctd.nc - 26.0N, -95.5W - 1992-11-20\"', '\"Deepwater CTD - 00596120.bdo.nc - 22.02N, -85.2W - 1970-04-00\"', '\"Deepwater CTD - 94g0804.bdo.nc - 28.48N, -89.74W - 1994-10-20\"', '\"Deepwater CTD - d94j162.bdo.nc - 27.43N, -96.11W - 1994-11-13\"', '\"Deepwater CTD - d93f210.bdo.nc - 27.84N, -94.59W - 1993-00-06\"', '\"Deepwater CTD - 00374750.bdo.nc - 23.07N, -85.43W - 1962-05-24\"', '\"Deepwater CTD - 87g1205.ctd.nc - 26.5N, -93.2W - 1987-11-30\"', '\"Deepwater CTD - 03317559.ctd.nc - 26.02N, -90.97W - 1991-03-26\"', '\"Deepwater CTD - 00468628.bdo.nc - 29.13N, -86.33W - 1966-02-18\"', '\"Deepwater CTD - 3_09_096.ctd.nc - 26.75N, -90.83W - 1992-11-14\"', '\"Deepwater CTD - d94h052.bdo.nc - 27.56N, -93.0W - 1994-04-29\"', '\"Deepwater CTD - 00634943.bdo.nc - 24.07N, -96.35W - 1971-00-23\"', '\"Deepwater CTD - 00838233.bdo.nc - 27.05N, -86.13W - 1983-11-17\"', '\"Deepwater CTD - 00596657.bdo.nc - 21.82N, -85.66W - 1970-04-16\"', '\"Deepwater CTD - 00537623.bdo.nc - 22.35N, -85.63W - 1968-05-00\"', '\"Deepwater CTD - 00843538.bdo.nc - 25.63N, -84.95W - 1984-05-13\"', '\"Deepwater CTD - d92a098.bdo.nc - 27.66N, -93.0W - 1992-05-00\"', '\"Deepwater CTD - d94h090.ctd.nc - 27.74N, -94.2W - 1994-05-01\"', '\"Deepwater CTD - 00636527.bdo.nc - 19.53N, -94.56W - 1971-00-03\"', '\"Deepwater CTD - d93f044.ctd.nc - 27.97N, -91.32W - 1993-07-29\"', '\"Deepwater CTD - d93e207.ctd.nc - 27.65N, -95.71W - 1993-05-10\"', '\"Deepwater CTD - 00589631.bdo.nc - 23.93N, -82.24W - 1969-11-30\"', '\"Deepwater CTD - 00007.ctd.nc - 27.0N, -90.0W - 1994-04-17\"', '\"Deepwater CTD - 87g1114.ctd.nc - 27.01N, -93.26W - 1987-11-21\"', '\"Deepwater CTD - 00371547.bdo.nc - 26.67N, -93.07W - 1962-03-26\"', '\"Deepwater CTD - n2l06s09.ctd.nc - 29.5N, -86.47W - 1998-05-12\"', '\"Deepwater CTD - 00468026.bdo.nc - 24.33N, -92.06W - 1966-02-12\"', '\"Deepwater CTD - 00682138.bdo.nc - 21.58N, -85.68W - 1973-05-27\"', '\"Deepwater CTD - 00514645.bdo.nc - 25.23N, -96.5W - 1967-00-18\"', '\"Deepwater CTD - 00537597.bdo.nc - 22.2N, -86.23W - 1968-05-00\"', '\"Deepwater CTD - 00727504.bdo.nc - 25.61N, -84.93W - 1975-00-13\"', '\"Deepwater CTD - 00573961.bdo.nc - 27.18N, -85.45W - 1969-06-19\"', '\"Deepwater CTD - 00676717.bdo.nc - 23.58N, -82.35W - 1973-02-25\"', '\"Deepwater CTD - 92g0305d.ctd.nc - 26.67N, -94.97W - 1992-03-18\"', '\"Deepwater CTD - 00636468.bdo.nc - 20.47N, -94.52W - 1971-00-03\"', '\"Deepwater CTD - 90g10103.bdo.nc - 28.44N, -89.7W - 1990-07-22\"', '\"Deepwater CTD - 00682469.bdo.nc - 22.26N, -96.08W - 1973-06-01\"', '\"Deepwater CTD - 03260912.ctd.nc - 25.95N, -84.5W - 1979-04-26\"', '\"Deepwater CTD - 00673287.bdo.nc - 23.97N, -83.47W - 1972-12-10\"', '\"Deepwater CTD - 87g1201.bdo.nc - 26.33N, -93.25W - 1987-11-29\"', '\"Deepwater CTD - d94i020.bdo.nc - 27.86N, -90.5W - 1994-07-29\"', '\"Deepwater CTD - 00648368.bdo.nc - 20.0N, -94.45W - 1972-01-13\"', '\"Deepwater CTD - d93f165.bdo.nc - 27.1N, -96.21W - 1993-00-04\"', '\"Deepwater CTD - n4l11s12.ctd.nc - 27.5N, -84.89W - 1998-11-14\"', '\"Deepwater CTD - 03317854.ctd.nc - 26.36N, -93.58W - 1991-06-04\"', '\"Deepwater CTD - 00371515.bdo.nc - 24.0N, -93.08W - 1962-03-25\"', '\"Deepwater CTD - 00582210.bdo.nc - 23.97N, -85.75W - 1969-00-31\"', '\"Deepwater CTD - 00681514.bdo.nc - 23.48N, -85.72W - 1973-05-20\"', '\"Deepwater CTD - 00634569.bdo.nc - 25.97N, -91.28W - 1971-00-20\"', '\"Deepwater CTD - 00601254.bdo.nc - 25.63N, -85.07W - 1970-06-20\"', '\"Deepwater CTD - d94i007.bdo.nc - 27.87N, -92.86W - 1994-07-28\"', '\"Deepwater CTD - 00532211.bdo.nc - 23.52N, -83.32W - 1968-03-00\"', '\"Deepwater CTD - 90g1513a.ctd.nc - 25.67N, -88.67W - 1990-10-15\"', '\"Deepwater CTD - 00635153.bdo.nc - 23.97N, -90.33W - 1971-00-25\"', '\"Deepwater CTD - 03294083.ctd.nc - 24.92N, -92.78W - 1985-10-25\"', '\"Deepwater CTD - 00579835.bdo.nc - 19.63N, -94.4W - 1969-00-00\"', '\"Deepwater CTD - 53792.ctd.nc - 26.5N, -88.0W - 1992-04-28\"', '\"Deepwater CTD - 53783.ctd.nc - 29.0N, -87.0W - 1992-04-27\"', '\"Deepwater CTD - pe972206.ctd.nc - 28.5N, -88.85W - 1997-03-19\"', '\"Deepwater CTD - d94i013.ctd.nc - 27.94N, -91.54W - 1994-07-28\"', '\"Deepwater CTD - 00596907.bdo.nc - 21.68N, -85.99W - 1970-04-20\"', '\"Deepwater CTD - 03358714.ctd.nc - 22.0N, -94.0W - 1985-03-12\"', '\"Deepwater CTD - 00050236.bdo.nc - 23.53N, -87.0W - 1932-02-13\"', '\"Deepwater CTD - 93g0108.ctd.nc - 27.72N, -95.07W - 1993-01-13\"', '\"Deepwater CTD - 00456400.bdo.nc - 28.85N, -87.23W - 1965-00-22\"', '\"Deepwater CTD - 00731776.bdo.nc - 26.46N, -85.22W - 1976-02-26\"', '\"Deepwater CTD - 3_04_031.ctd.nc - 26.28N, -94.17W - 1992-11-18\"', '\"Deepwater CTD - 00856626.bdo.nc - 25.03N, -93.24W - 1985-10-25\"', '\"Deepwater CTD - d94h143.bdo.nc - 27.07N, -95.98W - 1994-05-05\"', '\"Deepwater CTD - d94h119.ctd.nc - 27.39N, -95.62W - 1994-05-03\"', '\"Deepwater CTD - 00601138.bdo.nc - 25.08N, -86.12W - 1970-06-19\"', '\"Deepwater CTD - 03358756.ctd.nc - 21.0N, -96.83W - 1985-03-16\"', '\"Deepwater CTD - 00020130.bdo.nc - 23.42N, -83.72W - 1922-02-02\"', '\"Deepwater CTD - 00643565.bdo.nc - 19.49N, -92.87W - 1971-11-00\"', '\"Deepwater CTD - 03260950.ctd.nc - 27.67N, -85.55W - 1979-04-29\"', '\"Deepwater CTD - 88g0547d.ctd.nc - 27.26N, -96.25W - 1988-10-23\"', '\"Deepwater CTD - d93f047.bdo.nc - 27.75N, -92.0W - 1993-07-29\"', '\"Deepwater CTD - 00618386.bdo.nc - 21.82N, -86.4W - 1971-03-00\"', '\"Deepwater CTD - 93g0106.bdo.nc - 27.24N, -94.98W - 1993-01-12\"', '\"Deepwater CTD - 00732170.bdo.nc - 27.6N, -94.96W - 1976-03-00\"', '\"Deepwater CTD - 00020134.bdo.nc - 23.67N, -82.52W - 1922-02-03\"', '\"Deepwater CTD - d93f085.ctd.nc - 27.75N, -93.0W - 1993-07-31\"', '\"Deepwater CTD - 00577148.bdo.nc - 24.5N, -91.5W - 1969-07-18\"', '\"Deepwater CTD - d94j054.bdo.nc - 27.75N, -93.0W - 1994-11-06\"', '\"Deepwater CTD - 00573794.bdo.nc - 28.16N, -86.93W - 1969-06-18\"', '\"Deepwater CTD - 03260512.ctd.nc - 25.5N, -84.37W - 1979-03-30\"', '\"Deepwater CTD - n1l06s19.ctd.nc - 28.66N, -87.19W - 1997-11-23\"', '\"Deepwater CTD - 03358743.ctd.nc - 21.0N, -94.0W - 1985-03-14\"', '\"Deepwater CTD - 00085440.bdo.nc - 27.8N, -89.93W - 1937-03-25\"', '\"Deepwater CTD - 90g1406.ctd.nc - 27.61N, -92.25W - 1990-10-03\"', '\"Deepwater CTD - 00682592.bdo.nc - 20.92N, -96.61W - 1973-06-03\"', '\"Deepwater CTD - 00531909.bdo.nc - 26.25N, -93.77W - 1968-03-05\"', '\"Deepwater CTD - 94g078b.ctd.nc - 27.23N, -96.14W - 1994-00-19\"', '\"Deepwater CTD - 03313300.ctd.nc - 28.05N, -89.43W - 1989-00-16\"', '\"Deepwater CTD - 00477645.bdo.nc - 27.37N, -88.78W - 1966-06-12\"', '\"Deepwater CTD - d93e135.ctd.nc - 27.81N, -95.06W - 1993-05-05\"', 'OCADS CTD Stations near California Current Ecosystem 1 Mooring (CCE1)', 'OCADS CTD Stations near California Current Ecosystem 2 Mooring (CCE2)', 'LOBO 2 Buoy Mid Damariscotta River', 'A01 Optode - Oxygen', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI7, 2022-08-04, 27.2652N 83.3168W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI2, 2022-08-04, 27.4587N 82.8448W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI4, 2022-08-04, 27.3817N 83.0332W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_TB10, 2022-08-03, 27.6197N 83.4883W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_057.2, 2022-08-07, 25.3505N 81.4875W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI9, 2022-08-04, 27.1937N 83.5053W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_AMI8, 2022-08-04, 27.2273N 83.4105W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_CAL5, 2022-08-06, 26.1873N 82.2113W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_057.3, 2022-08-07, 25.3522N 81.6553W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_CAL3, 2022-08-06, 26.3438N 82.0412W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_057.1, 2022-08-07, 25.3515N 81.3345W', 'Walton-Smith CTD, WS22215, WS22215_2022_08_Weatherbird_Smith_CTD_CAL1, 2022-08-06, 26.4233N 81.9567W'])" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df_out_final.keys()" + " dict_out_final['{}'.format(row['title'])] = pd.read_csv('{}.csvp'.format(row['url']), low_memory=False)" ] }, { @@ -1508,7 +1421,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 14, "metadata": {}, "outputs": [ { @@ -1783,274 +1696,27 @@ "instrument5 NaN " ] }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df_out_final[\"\\\"Deepwater CTD - pe972218.ctd.nc - 29.25N, -87.89W - 1997-03-21\\\"\"].head(5).T" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "
titleurlstd_name
org
CeNCOOS222
GCOOS378378378
NERACOOS555
PacIOOS222PacIOOS222
SECOORA
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
latitude (degrees_north)longitude (degrees_east)
029.2472-87.888901
129.2472-87.888901
229.2472-87.888901
329.2472-87.888901
429.2472-87.888901
.........
34629.2472-87.888901
34729.2472-87.888901
34829.2472-87.888901
34929.2472-87.888901
35029.2472-87.888901
\n", - "

351 rows × 2 columns

\n", - "
" - ], - "text/plain": [ - " latitude (degrees_north) longitude (degrees_east)\n", - "0 29.2472 -87.888901\n", - "1 29.2472 -87.888901\n", - "2 29.2472 -87.888901\n", - "3 29.2472 -87.888901\n", - "4 29.2472 -87.888901\n", - ".. ... ...\n", - "346 29.2472 -87.888901\n", - "347 29.2472 -87.888901\n", - "348 29.2472 -87.888901\n", - "349 29.2472 -87.888901\n", - "350 29.2472 -87.888901\n", - "\n", - "[351 rows x 2 columns]" - ] - }, - "execution_count": 17, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "df_out_final[\"\\\"Deepwater CTD - pe972218.ctd.nc - 29.25N, -87.89W - 1997-03-21\\\"\"][['latitude (degrees_north)','longitude (degrees_east)']]" + "dict_out_final[\"\\\"Deepwater CTD - pe972218.ctd.nc - 29.25N, -87.89W - 1997-03-21\\\"\"].head(5).T" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "## Clean up the coordinates to make a map" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
latitude (degrees_north)longitude (degrees_east)
034.969100-76.907100
143.080000-70.934400
243.072200-70.869400
329.204134-82.769001
432.136667-81.121944
.........
46726.187333-82.211333
46825.352167-81.655333
46926.343833-82.041167
47025.351500-81.334500
47126.423333-81.956667
\n", - "

472 rows × 2 columns

\n", - "
" - ], - "text/plain": [ - " latitude (degrees_north) longitude (degrees_east)\n", - "0 34.969100 -76.907100\n", - "1 43.080000 -70.934400\n", - "2 43.072200 -70.869400\n", - "3 29.204134 -82.769001\n", - "4 32.136667 -81.121944\n", - ".. ... ...\n", - "467 26.187333 -82.211333\n", - "468 25.352167 -81.655333\n", - "469 26.343833 -82.041167\n", - "470 25.351500 -81.334500\n", - "471 26.423333 -81.956667\n", - "\n", - "[472 rows x 2 columns]" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df_coords = pd.DataFrame(columns=['latitude (degrees_north)','longitude (degrees_east)'])\n", - "\n", - "for key in df_out_final.keys():\n", - " df_coords = pd.concat([df_coords, df_out_final[key][['latitude (degrees_north)','longitude (degrees_east)']]])\n", + "## Let's make a nice map of the distribution of observations\n", "\n", - "# drop all duplicates\n", - "df_coords_clean = df_coords.drop_duplicates(ignore_index=True)\n", - "\n", - "df_coords_clean" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Create a function for mapping" + "Below we create a mapping function to plot the unique dataset points on a map. Then, we use that function with our full response. We have to do a little reorganizing of the data to build one DataFrame for all the coordinates." ] }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -2076,31 +1742,24 @@ " return ax" ] }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Make a map with the coordinates" - ] - }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 20, + "execution_count": 17, "metadata": {}, "output_type": "execute_result" }, { "data": { - "image/png": "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ixcvZnBNY263G/X19QOuG8zIyEB2dnafnSWIUkn3phddXV0wm83JLoeIiBIs5vA6b948fP755xg3blwi6qEECgQCaGpqgt1u7/ccjUaDnJwc/nFCacVsNkMURbZkIyIaA6IKr2+99Vb43xdddBF+/vOfY9++fZg0aVKvmblLLrkkvhVSXLS3t6OhoaHXEgGVSgWtVguNRgONRsOZVkpbDK5ERGNDVOH10ksv7XXsvvvu63VMEIR+109ScomiiFAoFBFUNRoN17ISERFRWokqvB7fDovST0ZGRngjASIiIqJ0FXOS2bBhQ58tlXw+HzZs2BCXoij+BEFgcCUiIqK0F3Oaue6669DR0dHruNPpxHXXXReXooiIiIiI+hJzeO3vit6jR4/CaDTGpSgiIiIior5E3SprypQpEAQBgiDg29/+dsQONsFgEFVVVbjgggsSUiQRERERERBDeO3uOLBnzx7MmzcvYhcbhUKBkpIS/OAHP4h7gURERERE3aIOr/feey+CwSCKi4sxb9485ObmJrIuIiIiIqJeYlrzKpVKcfPNNw+4rSgRERERUaLEfMHWpEmTUFlZmYhaiIiIiIgGFHN4ffDBB3HXXXfh73//OxoaGuBwOCI+iIiIiIgSJeo1r926OwpccsklES2zultocXtYIiIiIkqUmMPrBx98kIg6iIiIiIgGFXN4nT17diLqICIiIiIaVMzhFQDa29vx/PPPY//+/RAEARMnTsT111/PHbaIiIiIKKFivmDr888/x/jx4/HYY4/BZrOhtbUVa9euxfjx47Fr165E1EhEREREBGAIM6933HEHLrnkEjz33HPhLWIDgQB++tOfYsmSJdi6dWvciyQiIiIiAoYQXj///POI4AoAMpkMy5Ytw9SpU+NaHBERERFRTzEvGzAYDDhy5Eiv47W1tdDr9XEpioiIiIioLzGH1x/96EdYuHAh/vznP6O2thZHjx7Fn/70J/z0pz/FggULElEjERERERGAISwb+PWvfw1BEHD11VcjEAgAAORyOX72s5/hoYceinuBRERERETdYg6vCoUCjz/+OFavXo3Dhw9DFEWUlZVBo9Ekoj4iIiIiorAh9XkFAI1Gg0mTJsWzFiIiIiKiAcUcXjs7O/HQQw/hX//6F5qbmxEKhSJur6ysjFtxREREREQ9xRxef/rTn2LLli246qqrkJub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KwsWiyXlc13Ml5GFQiHcf//9yM/Ph06nC1/p9qtf/QrPP/983AskIkonoigyvBIlUaosHbDZbCkRXOscfnxe14U6R//vCGk0GpSVlcFqtaZ8cAWGEF4feOABvPjii1izZg0UCkX4+KRJk/D73/8+rsUREaWbUCiUVuvaiEabVAivbW1tqK+vT2oNTm8Q9/yrCTe9VY8VHzTjprfqcc+/muDyftPpQKPRoLi4GKWlpVAqlUmsNjYxh9cNGzbg2WefxZVXXhmxFdvkyZPxn//8J67FERGlG866EiVXsttltba2oqGhIak1AMAj21qxpzHytdjT6MGaba3Q6/UYN24cxo0bB71enxazrT3FvCikrq4OZWVlvY6HQiFepEBEYx5/DhIlVzJnXtva2tDY2Ji05+9W5/BjV0PvEB8SgV0NHoS0Fmg0miRUFh8xz7yefPLJ+Oijj3odf/XVVzFlypS4FEVElK4480qUXIFAIGITgJF83qamphF/3r40OAf+OVTdlt7b6MY883rvvffiqquuQl1dHUKhEF5//XUcOHAAGzZswN///vdE1EhElDYYXomSz+v1jvjMYnNzM0Kh0Ig+Z39y9QPHuxJzem+hG3N4vfjii/HnP/8Zq1atgiAIuOeee3D66afjb3/7G+bOnZuIGomI0obL5Up2CURjns/nG3Z49fl8aGlp6bUMob8LMru6uob1fMOxq74LB1q9mGBR4vQ8NU4pzsKscj+2V7Qi2KNeqSBgZpkFpZYxFl4BYN68eZg3b168ayEiSmuhUAidnen9dhzRaDDc4Gq321FXVxenahKnwenHne80wuH9ZsbXoJTgzVuK8MSCKbht425sPdQSvm1mmQVPLEj/JZ6p0cWXiGgUcLlcbJNFlGQajSailedQ6HQ6SCSSlFkG0J/jgysAOLwhXPbMJ9h9z/nYsPAsVLV2orqtEyVmbdrPuHaLKryaTKao2yjYbLZhFURElK64ZIAo+YxG47AfQy6XQ6fTweFwxKGixNhV39UruHazu/346FALzi23otQyekJrt6jC67p168L/bmtrwwMPPIB58+Zh+vTpAICPP/4Y7777Ln71q18lpEgiolQniiKcTmeyyyAa8+IRXgFArVandHg90DpwS7BdR+w4t9w6QtWMrKjC6zXXXBP+9w9+8APcd999uPXWW8PHFi9ejCeffBLvvfce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fx4MBrF06dLwcy1btgyiKEbcRxRFrFmzBuPGjYNarcapp56Kv/zlLwO+Dq+88gpOPfVUFBQURBx/8cUXUVRUBI1Gg+9///toa2vrdd+//e1vOOOMM6BSqTBu3DisXLkSgUAgfPt//vMfnHPOOVCpVJg4cSLee+89CIKAv/71rwCA6upqCIKAV155BXPmzIFKpcIf//hHAMALL7yAk046CSqVCieeeCJ++9vfRjx3XV0dfvSjH8FkMsFsNmP+/Pmorq4O3/7hhx/irLPOglarRUZGBmbOnImampoBX4tov661a9di0qRJ0Gq1KCwsxKJFi+ByucK319TU4OKLL4bJZIJWq8XJJ5+Mf/7zn6iursZ5550HADCZTBAEAddee234fpdccgk2btwYVY1ElHwMr0Q0oq699lp8/vnneOutt/Dxxx9DFEV897vfjZj5c7vd+PWvf40//OEP2Lp1K44cOYK77rorfPvDDz+Ml156CS+88AK2b98Oh8MRDmZ9ef3111FQUID77rsPDQ0NEUF4MI8++ij+7//+D88//zy2bdsGm82GN954I+KcX/7yl3jhhRfw9NNP4+uvv8Ydd9yBn/zkJ9iyZUu/j7t161ZMnTo14tinn36K66+/HosWLcKePXtw3nnn4YEHHog4591338VPfvITLF68GPv27cPvfvc7vPjii3jwwQcBAKFQCJdeeik0Gg0+/fRTPPvss1i+fHmfNfziF7/A4sWLsX//fsybNw/PPfccli9fjgcffBD79+/HqlWr8Ktf/Qrr168HcGxczjvvPOh0OmzduhXbtm0L/3Hh8/kQCARw6aWXYvbs2fjyyy/x8ccf48Ybbwz/sTCQwb4uAJBIJPjNb36Dr776CuvXr8f777+PZcuWhW+/5ZZb4PV6sXXrVuzduxcPP/wwdDodCgsL8dprrwE4ts64oaEBjz/+ePh+Z511Fj777DN4vd5B6ySiFCASESXQ7Nmzxdtvv10URVE8ePCgCEDcvn17+PbW1lZRrVaLr7zyiiiKovjCCy+IAMSKiorwOU899ZSYnZ0d/jw7O1t85JFHwp8HAgGxqKhInD9/fp/PK4qiWFxcLD722GMRtd17773iqaeeGnHsscceE4uLi8Of5+bmig899FD4c7/fLxYUFISfy+VyiSqVStyxY0fE4yxcuFBcsGBBv6/LqaeeKt53330RxxYsWCBecMEFEcd+9KMfiUajMfz5ueeeK65atSrinD/84Q9ibm6uKIqi+Pbbb4symUxsaGgI375582YRgPjGG2+IoiiKVVVVIgBx3bp1EY9TWFgovvzyyxHH7r//fnH69OmiKIri888/L06YMEEMhULh271er6hWq8V3331XbGtrEwGIH374Yb9fd38G+7r68sorr4hmszn8+aRJk8QVK1b0ee4HH3wgAhDtdnuv2/7973+LAMTq6uqY6yaikSdLYm4mojFm//79kMlkmDZtWviY2WzGhAkTsH///vAxjUaD8ePHhz/Pzc1Fc3MzAKCjowNNTU0466yzwrdLpVKcccYZCIVCca23o6MDDQ0NmD59eviYTCbD1KlTw0sH9u3bB4/Hg7lz50bc1+fzYcqUKf0+dldXF1QqVcSx/fv34/vf/37EsenTp+Odd94Jf/7FF19g586dETOSwWAQHo8HbrcbBw4cQGFhIXJycsK393yteuo589vS0oLa2losXLgQN9xwQ/h4IBCA0WgMP3dFRUWvtcQejweHDx/G+eefj2uvvRbz5s3D3Llz8Z3vfAeXX345cnNz+30dov26NBoNPvjgA6xatQr79u2Dw+FAIBCAx+NBZ2cntFotFi9ejJ/97GfYtGkTvvOd7+AHP/gBJk+ePOhzq9VqAMdmloko9TG8EtGIEY9bK9rzeM+3luVyecTtgiD0uu/xb0X399gDkUgkve4X64VL3YH5H//4B/Lz8yNuUyqV/d7PYrHAbrdHHIvmawiFQli5ciUuu+yyXrepVKper+VAtFptxOMCwHPPPRfxxwVw7I+D7nPOOOOMPi9uslqtAI6tmV28eDHeeecd/PnPf8Yvf/lLbN68GWefffawvq6amhp897vfxc0334z7778fmZmZ2LZtGxYuXBges5/+9KeYN28e/vGPf2DTpk1YvXo1Hn30Udx2220DPrfNZov4GogotTG8EtGImThxIgKBAD799FPMmDEDANDW1oaDBw/ipJNOiuoxjEYjsrOz8dlnn+Hcc88FcGyGbvfu3b0uvupJoVAgGAxGHLNarWhsbIwIfHv27Il4rtzcXHzyySeYNWsWgGMzkV988QVOP/308NekVCpx5MgRzJ49O6qvAQCmTJmCffv2RRybOHEiPvnkk4hjx39++umn48CBAygrK+vzcU888UQcOXIETU1NyM7OBgDs3Llz0Hqys7ORn5+PyspKXHnllX2ec/rpp+PPf/4zsrKyYDAYBvzapkyZgrvvvhvTp0/Hyy+/PGh4Hezr+vzzzxEIBPDoo49CIjl2ucYrr7zS67zCwkLcfPPNuPnmm3H33Xfjueeew2233QaFQgEAvb4HAOCrr75CQUEBLBbLgDUSUWpgeCWiEVNeXo758+fjhhtuwO9+9zvo9Xr8z//8D/Lz8zF//vyoH+e2227D6tWrUVZWhhNPPBFPPPEE7Hb7gDOOJSUl2Lp1K3784x9DqVTCYrFgzpw5aGlpwZo1a/D//t//wzvvvIO33347IpjdfvvteOihh1BeXo6TTjoJa9eujegVqtfrcdddd+GOO+5AKBTCOeecA4fDgR07dkCn0+Gaa67ps5558+bhpz/9KYLBYHhmc/HixZgxYwbWrFmDSy+9FJs2bYpYMgAc60v6ve99D4WFhfjhD38IiUSCL7/8Env37sUDDzyAuXPnYvz48bjmmmuwZs0aOJ3O8AVbg83IrlixAosXL4bBYMCFF14Ir9eLzz//HHa7HUuXLsWVV16JRx55BPPnz8d9992HgoICHDlyBK+//jp+/vOfw+/349lnn8Ull1yCvLw8HDhwAAcPHsTVV1894PNG83WNHz8egUAATzzxBC6++GJs374dzzzzTMRjLFmyBBdeeCFOOOEE2O12vP/+++E/ioqLiyEIAv7+97/ju9/9LtRqNXQ6HQDgo48+wvnnnz9ojUSUIpK22paIxoTjL5yy2WziVVddJRqNRlGtVovz5s0TDx48GL79hRdeiLhASRRF8Y033hB7/rjy+/3irbfeKhoMBtFkMom/+MUvxB/+8Ifij3/8436f9+OPPxYnT54sKpXKiMd6+umnxcLCQlGr1YpXX321+OCDD0ZcsOX3+8Xbb79dNBgMYkZGhrh06VLx6quvjrg4LBQKiY8//rg4YcIEUS6Xi1arVZw3b564ZcuWfl+XQCAg5ufni++8807E8eeff14sKCgQ1Wq1ePHFF4u//vWve70e77zzjjhjxgxRrVaLBoNBPOuss8Rnn302fPv+/fvFmTNnigqFQjzxxBPFv/3tbyKA8HN1X7C1e/fuXnW99NJL4mmnnSYqFArRZDKJs2bNEl9//fXw7Q0NDeLVV18tWiwWUalUiuPGjRNvuOEGsaOjQ2xsbBQvvfRSMTc3V1QoFGJxcbF4zz33iMFgsN/XIZava+3atWJubm74+2bDhg0RF2Hdeuut4vjx40WlUilarVbxqquuEltbW8P3v++++8ScnBxREATxmmuuEUVRFLu6ukSDwSB+/PHHUdVIRMkniOIQFooREaWQUCiEk046CZdffnnErlqp7re//S3efPNNvPvuuwl9nu3bt+Occ85BRUVFxIVwBDz11FN48803sWnTpmSXQkRR4rIBIko7NTU12LRpE2bPng2v14snn3wSVVVVuOKKK5JdWkxuvPFG2O12OJ3OuO4G9sYbb0Cn06G8vBwVFRW4/fbbMXPmTAbXPsjlcjzxxBPJLoOIYsCZVyJKO7W1tfjxj3+Mr776CqIo4pRTTsFDDz0UvqhqrNuwYQPuv/9+1NbWwmKx4Dvf+Q4effRRmM3mpNV08skn97vT1u9+97t+LxIjIjoewysRESVcTU1Nv23IsrOz4zrzTESjG8MrEREREaUNSbILICIiIiKKFsMrEREREaUNhlciIiIiShsMr0RERESUNhheiYiIiChtMLwSERERUdpgeCUiIiKitMHwSkRERERp4/8DBw7XGLnmGAcAAAAASUVORK5CYII=", + "image/png": "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ixcvZnBNY263G/X19QOuG8zIyEB2dnafnSWIUkn3phddXV0wm83JLoeIiBIs5vA6b948fP755xg3blwi6qEECgQCaGpqgt1u7/ccjUaDnJwc/nFCacVsNkMURbZkIyIaA6IKr2+99Vb43xdddBF+/vOfY9++fZg0aVKvmblLLrkkvhVSXLS3t6OhoaHXEgGVSgWtVguNRgONRsOZVkpbDK5ERGNDVOH10ksv7XXsvvvu63VMEIR+109ScomiiFAoFBFUNRoN17ISERFRWokqvB7fDovST0ZGRngjASIiIqJ0FXOS2bBhQ58tlXw+HzZs2BCXoij+BEFgcCUiIqK0F3Oaue6669DR0dHruNPpxHXXXReXooiIiIiI+hJzeO3vit6jR4/CaDTGpSgiIiIior5E3SprypQpEAQBgiDg29/+dsQONsFgEFVVVbjgggsSUiQRERERERBDeO3uOLBnzx7MmzcvYhcbhUKBkpIS/OAHP4h7gURERERE3aIOr/feey+CwSCKi4sxb9485ObmJrIuIiIiIqJeYlrzKpVKcfPNNw+4rSgRERERUaLEfMHWpEmTUFlZmYhaiIiIiIgGFHN4ffDBB3HXXXfh73//OxoaGuBwOCI+iIiIiIgSJeo1r926OwpccsklES2zultocXtYIiIiIkqUmMPrBx98kIg6iIiIiIgGFXN4nT17diLqICIiIiIaVMzhFQDa29vx/PPPY//+/RAEARMnTsT111/PHbaIiIiIKKFivmDr888/x/jx4/HYY4/BZrOhtbUVa9euxfjx47Fr165E1EhEREREBGAIM6933HEHLrnkEjz33HPhLWIDgQB++tOfYsmSJdi6dWvciyQiIiIiAoYQXj///POI4AoAMpkMy5Ytw9SpU+NaHBERERFRTzEvGzAYDDhy5Eiv47W1tdDr9XEpioiIiIioLzGH1x/96EdYuHAh/vznP6O2thZHjx7Fn/70J/z0pz/FggULElEjERERERGAISwb+PWvfw1BEHD11VcjEAgAAORyOX72s5/hoYceinuBRERERETdYg6vCoUCjz/+OFavXo3Dhw9DFEWUlZVBo9Ekoj4iIiIiorAh9XkFAI1Gg0mTJsWzFiIiIiKiAcUcXjs7O/HQQw/hX//6F5qbmxEKhSJur6ysjFtxREREREQ9xRxef/rTn2LLli246qqrkJub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KwsWiyXlc13Ml5GFQiHcf//9yM/Ph06nC1/p9qtf/QrPP/983AskIkonoigyvBIlUaosHbDZbCkRXOscfnxe14U6R//vCGk0GpSVlcFqtaZ8cAWGEF4feOABvPjii1izZg0UCkX4+KRJk/D73/8+rsUREaWbUCiUVuvaiEabVAivbW1tqK+vT2oNTm8Q9/yrCTe9VY8VHzTjprfqcc+/muDyftPpQKPRoLi4GKWlpVAqlUmsNjYxh9cNGzbg2WefxZVXXhmxFdvkyZPxn//8J67FERGlG866EiVXsttltba2oqGhIak1AMAj21qxpzHytdjT6MGaba3Q6/UYN24cxo0bB71enxazrT3FvCikrq4OZWVlvY6HQiFepEBEYx5/DhIlVzJnXtva2tDY2Ji05+9W5/BjV0PvEB8SgV0NHoS0Fmg0miRUFh8xz7yefPLJ+Oijj3odf/XVVzFlypS4FEVElK4480qUXIFAIGITgJF83qamphF/3r40OAf+OVTdlt7b6MY883rvvffiqquuQl1dHUKhEF5//XUcOHAAGzZswN///vdE1EhElDYYXomSz+v1jvjMYnNzM0Kh0Ig+Z39y9QPHuxJzem+hG3N4vfjii/HnP/8Zq1atgiAIuOeee3D66afjb3/7G+bOnZuIGomI0obL5Up2CURjns/nG3Z49fl8aGlp6bUMob8LMru6uob1fMOxq74LB1q9mGBR4vQ8NU4pzsKscj+2V7Qi2KNeqSBgZpkFpZYxFl4BYN68eZg3b168ayEiSmuhUAidnen9dhzRaDDc4Gq321FXVxenahKnwenHne80wuH9ZsbXoJTgzVuK8MSCKbht425sPdQSvm1mmQVPLEj/JZ6p0cWXiGgUcLlcbJNFlGQajSailedQ6HQ6SCSSlFkG0J/jgysAOLwhXPbMJ9h9z/nYsPAsVLV2orqtEyVmbdrPuHaLKryaTKao2yjYbLZhFURElK64ZIAo+YxG47AfQy6XQ6fTweFwxKGixNhV39UruHazu/346FALzi23otQyekJrt6jC67p168L/bmtrwwMPPIB58+Zh+vTpAICPP/4Y7777Ln71q18lpEgiolQniiKcTmeyyyAa8+IRXgFArVandHg90DpwS7BdR+w4t9w6QtWMrKjC6zXXXBP+9w9+8APcd999uPXWW8PHFi9ejCeffBLvvfce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fx4MBrF06dLwcy1btgyiKEbcRxRFrFmzBuPGjYNarcapp56Kv/zlLwO+Dq+88gpOPfVUFBQURBx/8cUXUVRUBI1Gg+9///toa2vrdd+//e1vOOOMM6BSqTBu3DisXLkSgUAgfPt//vMfnHPOOVCpVJg4cSLee+89CIKAv/71rwCA6upqCIKAV155BXPmzIFKpcIf//hHAMALL7yAk046CSqVCieeeCJ++9vfRjx3XV0dfvSjH8FkMsFsNmP+/Pmorq4O3/7hhx/irLPOglarRUZGBmbOnImampoBX4tov661a9di0qRJ0Gq1KCwsxKJFi+ByucK319TU4OKLL4bJZIJWq8XJJ5+Mf/7zn6iursZ5550HADCZTBAEAddee234fpdccgk2btwYVY1ElHwMr0Q0oq699lp8/vnneOutt/Dxxx9DFEV897vfjZj5c7vd+PWvf40//OEP2Lp1K44cOYK77rorfPvDDz+Ml156CS+88AK2b98Oh8MRDmZ9ef3111FQUID77rsPDQ0NEUF4MI8++ij+7//+D88//zy2bdsGm82GN954I+KcX/7yl3jhhRfw9NNP4+uvv8Ydd9yBn/zkJ9iyZUu/j7t161ZMnTo14tinn36K66+/HosWLcKePXtw3nnn4YEHHog4591338VPfvITLF68GPv27cPvfvc7vPjii3jwwQcBAKFQCJdeeik0Gg0+/fRTPPvss1i+fHmfNfziF7/A4sWLsX//fsybNw/PPfccli9fjgcffBD79+/HqlWr8Ktf/Qrr168HcGxczjvvPOh0OmzduhXbtm0L/3Hh8/kQCARw6aWXYvbs2fjyyy/x8ccf48Ybbwz/sTCQwb4uAJBIJPjNb36Dr776CuvXr8f777+PZcuWhW+/5ZZb4PV6sXXrVuzduxcPP/wwdDodCgsL8dprrwE4ts64oaEBjz/+ePh+Z511Fj777DN4vd5B6ySiFCASESXQ7Nmzxdtvv10URVE8ePCgCEDcvn17+PbW1lZRrVaLr7zyiiiKovjCCy+IAMSKiorwOU899ZSYnZ0d/jw7O1t85JFHwp8HAgGxqKhInD9/fp/PK4qiWFxcLD722GMRtd17773iqaeeGnHsscceE4uLi8Of5+bmig899FD4c7/fLxYUFISfy+VyiSqVStyxY0fE4yxcuFBcsGBBv6/LqaeeKt53330RxxYsWCBecMEFEcd+9KMfiUajMfz5ueeeK65atSrinD/84Q9ibm6uKIqi+Pbbb4symUxsaGgI375582YRgPjGG2+IoiiKVVVVIgBx3bp1EY9TWFgovvzyyxHH7r//fnH69OmiKIri888/L06YMEEMhULh271er6hWq8V3331XbGtrEwGIH374Yb9fd38G+7r68sorr4hmszn8+aRJk8QVK1b0ee4HH3wgAhDtdnuv2/7973+LAMTq6uqY6yaikSdLYm4mojFm//79kMlkmDZtWviY2WzGhAkTsH///vAxjUaD8ePHhz/Pzc1Fc3MzAKCjowNNTU0466yzwrdLpVKcccYZCIVCca23o6MDDQ0NmD59eviYTCbD1KlTw0sH9u3bB4/Hg7lz50bc1+fzYcqUKf0+dldXF1QqVcSx/fv34/vf/37EsenTp+Odd94Jf/7FF19g586dETOSwWAQHo8HbrcbBw4cQGFhIXJycsK393yteuo589vS0oLa2losXLgQN9xwQ/h4IBCA0WgMP3dFRUWvtcQejweHDx/G+eefj2uvvRbz5s3D3Llz8Z3vfAeXX345cnNz+30dov26NBoNPvjgA6xatQr79u2Dw+FAIBCAx+NBZ2cntFotFi9ejJ/97GfYtGkTvvOd7+AHP/gBJk+ePOhzq9VqAMdmloko9TG8EtGIEY9bK9rzeM+3luVyecTtgiD0uu/xb0X399gDkUgkve4X64VL3YH5H//4B/Lz8yNuUyqV/d7PYrHAbrdHHIvmawiFQli5ciUuu+yyXrepVKper+VAtFptxOMCwHPPPRfxxwVw7I+D7nPOOOOMPi9uslqtAI6tmV28eDHeeecd/PnPf8Yvf/lLbN68GWefffawvq6amhp897vfxc0334z7778fmZmZ2LZtGxYuXBges5/+9KeYN28e/vGPf2DTpk1YvXo1Hn30Udx2220DPrfNZov4GogotTG8EtGImThxIgKBAD799FPMmDEDANDW1oaDBw/ipJNOiuoxjEYjsrOz8dlnn+Hcc88FcGyGbvfu3b0uvupJoVAgGAxGHLNarWhsbIwIfHv27Il4rtzcXHzyySeYNWsWgGMzkV988QVOP/308NekVCpx5MgRzJ49O6qvAQCmTJmCffv2RRybOHEiPvnkk4hjx39++umn48CBAygrK+vzcU888UQcOXIETU1NyM7OBgDs3Llz0Hqys7ORn5+PyspKXHnllX2ec/rpp+PPf/4zsrKyYDAYBvzapkyZgrvvvhvTp0/Hyy+/PGh4Hezr+vzzzxEIBPDoo49CIjl2ucYrr7zS67zCwkLcfPPNuPnmm3H33Xfjueeew2233QaFQgEAvb4HAOCrr75CQUEBLBbLgDUSUWpgeCWiEVNeXo758+fjhhtuwO9+9zvo9Xr8z//8D/Lz8zF//vyoH+e2227D6tWrUVZWhhNPPBFPPPEE7Hb7gDOOJSUl2Lp1K3784x9DqVTCYrFgzpw5aGlpwZo1a/D//t//wzvvvIO33347IpjdfvvteOihh1BeXo6TTjoJa9eujegVqtfrcdddd+GOO+5AKBTCOeecA4fDgR07dkCn0+Gaa67ps5558+bhpz/9KYLBYHhmc/HixZgxYwbWrFmDSy+9FJs2bYpYMgAc60v6ve99D4WFhfjhD38IiUSCL7/8Env37sUDDzyAuXPnYvz48bjmmmuwZs0aOJ3O8AVbg83IrlixAosXL4bBYMCFF14Ir9eLzz//HHa7HUuXLsWVV16JRx55BPPnz8d9992HgoICHDlyBK+//jp+/vOfw+/349lnn8Ull1yCvLw8HDhwAAcPHsTVV1894PNG83WNHz8egUAATzzxBC6++GJs374dzzzzTMRjLFmyBBdeeCFOOOEE2O12vP/+++E/ioqLiyEIAv7+97/ju9/9LtRqNXQ6HQDgo48+wvnnnz9ojUSUIpK22paIxoTjL5yy2WziVVddJRqNRlGtVovz5s0TDx48GL79hRdeiLhASRRF8Y033hB7/rjy+/3irbfeKhoMBtFkMom/+MUvxB/+8Ifij3/8436f9+OPPxYnT54sKpXKiMd6+umnxcLCQlGr1YpXX321+OCDD0ZcsOX3+8Xbb79dNBgMYkZGhrh06VLx6quvjrg4LBQKiY8//rg4YcIEUS6Xi1arVZw3b564ZcuWfl+XQCAg5ufni++8807E8eeff14sKCgQ1Wq1ePHFF4u//vWve70e77zzjjhjxgxRrVaLBoNBPOuss8Rnn302fPv+/fvFmTNnigqFQjzxxBPFv/3tbyKA8HN1X7C1e/fuXnW99NJL4mmnnSYqFArRZDKJs2bNEl9//fXw7Q0NDeLVV18tWiwWUalUiuPGjRNvuOEGsaOjQ2xsbBQvvfRSMTc3V1QoFGJxcbF4zz33iMFgsN/XIZava+3atWJubm74+2bDhg0RF2Hdeuut4vjx40WlUilarVbxqquuEltbW8P3v++++8ScnBxREATxmmuuEUVRFLu6ukSDwSB+/PHHUdVIRMkniOIQFooREaWQUCiEk046CZdffnnErlqp7re//S3efPNNvPvuuwl9nu3bt+Occ85BRUVFxIVwBDz11FN48803sWnTpmSXQkRR4rIBIko7NTU12LRpE2bPng2v14snn3wSVVVVuOKKK5JdWkxuvPFG2O12OJ3OuO4G9sYbb0Cn06G8vBwVFRW4/fbbMXPmTAbXPsjlcjzxxBPJLoOIYsCZVyJKO7W1tfjxj3+Mr776CqIo4pRTTsFDDz0UvqhqrNuwYQPuv/9+1NbWwmKx4Dvf+Q4effRRmM3mpNV08skn97vT1u9+97t+LxIjIjoewysRESVcTU1Nv23IsrOz4zrzTESjG8MrEREREaUNSbILICIiIiKKFsMrEREREaUNhlciIiIiShsMr0RERESUNhheiYiIiChtMLwSERERUdpgeCUiIiKitMHwSkRERERp4/8DBw7XGLnmGAcAAAAASUVORK5CYII=", "text/plain": [ "
" ] @@ -2110,6 +1769,15 @@ } ], "source": [ + "df_coords = pd.DataFrame(columns=['latitude (degrees_north)','longitude (degrees_east)'])\n", + "\n", + "for key in dict_out_final.keys():\n", + " df_coords = pd.concat([df_coords, dict_out_final[key][['latitude (degrees_north)','longitude (degrees_east)']]])\n", + "\n", + "# drop all duplicates\n", + "df_coords_clean = df_coords.drop_duplicates(ignore_index=True)\n", + "\n", + "# make the map\n", "make_map(df_coords_clean)" ] }, @@ -2119,12 +1787,12 @@ "source": [ "## Lets explore those points on an interactive map\n", "\n", - "Using [`geopandas.explore()`](https://geopandas.org/en/stable/docs/reference/api/geopandas.GeoDataFrame.explore.html)." + "Just for fun, we can us [`geopandas.explore()`](https://geopandas.org/en/stable/docs/reference/api/geopandas.GeoDataFrame.explore.html) to plot these points on an interactive map to browse around." ] }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 18, "metadata": {}, "outputs": [ { @@ -2143,27 +1811,28 @@ " \n", " <style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>\n", " <style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>\n", - " <script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>\n", " <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>\n", - " <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>\n", " <script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>\n", - " <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.css"/>\n", - " <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>\n", - " <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>\n", - " <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>\n", + " <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>\n", + " <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>\n", + " <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>\n", + " <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>\n", " <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>\n", " <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>\n", " \n", " <meta name="viewport" content="width=device-width,\n", " initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", " <style>\n", - " #map_9184634ca3c2191408414e113e6bf4ce {\n", + " #map_7a3ba2c472a00ef91c5d60a84180d85c {\n", " position: relative;\n", " width: 100.0%;\n", " height: 100.0%;\n", " left: 0.0%;\n", " top: 0.0%;\n", " }\n", + " .leaflet-container { font-size: 1rem; }\n", " </style>\n", " \n", " \n", @@ -2186,14 +1855,14 @@ "<body>\n", " \n", " \n", - " <div class="folium-map" id="map_9184634ca3c2191408414e113e6bf4ce" ></div>\n", + " <div class="folium-map" id="map_7a3ba2c472a00ef91c5d60a84180d85c" ></div>\n", " \n", "</body>\n", "<script>\n", " \n", " \n", - " var map_9184634ca3c2191408414e113e6bf4ce = L.map(\n", - " "map_9184634ca3c2191408414e113e6bf4ce",\n", + " var map_7a3ba2c472a00ef91c5d60a84180d85c = L.map(\n", + " "map_7a3ba2c472a00ef91c5d60a84180d85c",\n", " {\n", " center: [31.71355001525879, -113.23788950000001],\n", " crs: L.CRS.EPSG3857,\n", @@ -2202,77 +1871,77 @@ " preferCanvas: false,\n", " }\n", " );\n", - " L.control.scale().addTo(map_9184634ca3c2191408414e113e6bf4ce);\n", + " L.control.scale().addTo(map_7a3ba2c472a00ef91c5d60a84180d85c);\n", "\n", " \n", "\n", " \n", " \n", - " var tile_layer_a23f3d23eb26e55f39b9cdd5b717978f = L.tileLayer(\n", + " var tile_layer_a3e80a09c53ad1e942c04c374f634811 = L.tileLayer(\n", " "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",\n", - " {"attribution": "Data by \\u0026copy; \\u003ca href=\\"http://openstreetmap.org\\"\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca href=\\"http://www.openstreetmap.org/copyright\\"\\u003eODbL\\u003c/a\\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", - " ).addTo(map_9184634ca3c2191408414e113e6bf4ce);\n", + " {"attribution": "Data by \\u0026copy; \\u003ca target=\\"_blank\\" href=\\"http://openstreetmap.org\\"\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\"_blank\\" href=\\"http://www.openstreetmap.org/copyright\\"\\u003eODbL\\u003c/a\\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", + " ).addTo(map_7a3ba2c472a00ef91c5d60a84180d85c);\n", " \n", " \n", - " map_9184634ca3c2191408414e113e6bf4ce.fitBounds(\n", + " map_7a3ba2c472a00ef91c5d60a84180d85c.fitBounds(\n", " [[19.493000030517575, -156.893479], [43.9341, -69.5823]],\n", " {}\n", " );\n", " \n", " \n", - " function geo_json_587ed7b86b32a3b40b69fa7f96df86fc_styler(feature) {\n", + " function geo_json_e896b0bdd13728f539e421a7af0bc5aa_styler(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"fillOpacity": 0.5, "weight": 2};\n", " }\n", " }\n", - " function geo_json_587ed7b86b32a3b40b69fa7f96df86fc_highlighter(feature) {\n", + " function geo_json_e896b0bdd13728f539e421a7af0bc5aa_highlighter(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"fillOpacity": 0.75};\n", " }\n", " }\n", - " function geo_json_587ed7b86b32a3b40b69fa7f96df86fc_pointToLayer(feature, latlng) {\n", + " function geo_json_e896b0bdd13728f539e421a7af0bc5aa_pointToLayer(feature, latlng) {\n", " var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};\n", " \n", - " let style = geo_json_587ed7b86b32a3b40b69fa7f96df86fc_styler(feature)\n", + " let style = geo_json_e896b0bdd13728f539e421a7af0bc5aa_styler(feature)\n", " Object.assign(opts, style)\n", " \n", " return new L.CircleMarker(latlng, opts)\n", " }\n", "\n", - " function geo_json_587ed7b86b32a3b40b69fa7f96df86fc_onEachFeature(feature, layer) {\n", + " function geo_json_e896b0bdd13728f539e421a7af0bc5aa_onEachFeature(feature, layer) {\n", " layer.on({\n", " mouseout: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " geo_json_587ed7b86b32a3b40b69fa7f96df86fc.resetStyle(e.target);\n", + " geo_json_e896b0bdd13728f539e421a7af0bc5aa.resetStyle(e.target);\n", " }\n", " },\n", " mouseover: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " const highlightStyle = geo_json_587ed7b86b32a3b40b69fa7f96df86fc_highlighter(e.target.feature)\n", + " const highlightStyle = geo_json_e896b0bdd13728f539e421a7af0bc5aa_highlighter(e.target.feature)\n", " e.target.setStyle(highlightStyle);\n", " }\n", " },\n", " });\n", " };\n", - " var geo_json_587ed7b86b32a3b40b69fa7f96df86fc = L.geoJson(null, {\n", - " onEachFeature: geo_json_587ed7b86b32a3b40b69fa7f96df86fc_onEachFeature,\n", + " var geo_json_e896b0bdd13728f539e421a7af0bc5aa = L.geoJson(null, {\n", + " onEachFeature: geo_json_e896b0bdd13728f539e421a7af0bc5aa_onEachFeature,\n", " \n", - " style: geo_json_587ed7b86b32a3b40b69fa7f96df86fc_styler,\n", - " pointToLayer: geo_json_587ed7b86b32a3b40b69fa7f96df86fc_pointToLayer\n", + " style: geo_json_e896b0bdd13728f539e421a7af0bc5aa_styler,\n", + " pointToLayer: geo_json_e896b0bdd13728f539e421a7af0bc5aa_pointToLayer\n", " });\n", "\n", - " function geo_json_587ed7b86b32a3b40b69fa7f96df86fc_add (data) {\n", - " geo_json_587ed7b86b32a3b40b69fa7f96df86fc\n", + " function geo_json_e896b0bdd13728f539e421a7af0bc5aa_add (data) {\n", + " geo_json_e896b0bdd13728f539e421a7af0bc5aa\n", " .addData(data)\n", - " .addTo(map_9184634ca3c2191408414e113e6bf4ce);\n", + " .addTo(map_7a3ba2c472a00ef91c5d60a84180d85c);\n", " }\n", - " geo_json_587ed7b86b32a3b40b69fa7f96df86fc_add({"bbox": [-156.893479, 19.493000030517575, -69.5823, 43.9341], "features": [{"bbox": [-76.9071, 34.9691, -76.9071, 34.9691], "geometry": {"coordinates": [-76.9071, 34.9691], "type": "Point"}, "id": "0", "properties": {"latitude (degrees_north)": 34.9691, "longitude (degrees_east)": -76.9071}, "type": "Feature"}, {"bbox": [-70.9344, 43.08, -70.9344, 43.08], "geometry": {"coordinates": [-70.9344, 43.08], "type": "Point"}, "id": "1", "properties": {"latitude (degrees_north)": 43.08, "longitude (degrees_east)": -70.9344}, "type": "Feature"}, {"bbox": [-70.8694, 43.0722, -70.8694, 43.0722], "geometry": {"coordinates": [-70.8694, 43.0722], "type": "Point"}, "id": "2", "properties": {"latitude (degrees_north)": 43.0722, "longitude (degrees_east)": -70.8694}, "type": "Feature"}, {"bbox": [-82.769001, 29.204134, -82.769001, 29.204134], "geometry": {"coordinates": [-82.769001, 29.204134], "type": "Point"}, "id": "3", "properties": {"latitude (degrees_north)": 29.204134, "longitude (degrees_east)": -82.769001}, "type": "Feature"}, {"bbox": [-81.121944, 32.136667, -81.121944, 32.136667], "geometry": {"coordinates": [-81.121944, 32.136667], "type": "Point"}, "id": "4", "properties": {"latitude (degrees_north)": 32.136667, "longitude (degrees_east)": -81.121944}, "type": "Feature"}, {"bbox": [-79.041147, 33.861003, -79.041147, 33.861003], "geometry": {"coordinates": [-79.041147, 33.861003], "type": "Point"}, "id": "5", "properties": {"latitude (degrees_north)": 33.861003, "longitude (degrees_east)": -79.041147}, "type": "Feature"}, {"bbox": [-76.37275, 35.099867, -76.37275, 35.099867], "geometry": {"coordinates": [-76.37275, 35.099867], "type": "Point"}, "id": "6", "properties": {"latitude (degrees_north)": 35.099867, "longitude (degrees_east)": -76.37275}, "type": "Feature"}, {"bbox": [-80.26418, 27.187789, -80.26418, 27.187789], "geometry": {"coordinates": [-80.26418, 27.187789], "type": "Point"}, "id": "7", "properties": {"latitude (degrees_north)": 27.187789, "longitude (degrees_east)": -80.26418}, "type": "Feature"}, {"bbox": [-80.343113, 27.53483, -80.343113, 27.53483], "geometry": {"coordinates": [-80.343113, 27.53483], "type": "Point"}, "id": "8", "properties": {"latitude (degrees_north)": 27.53483, "longitude (degrees_east)": -80.343113}, "type": "Feature"}, {"bbox": [-80.470822, 27.839089, -80.470822, 27.839089], "geometry": {"coordinates": [-80.470822, 27.839089], "type": "Point"}, "id": "9", "properties": {"latitude (degrees_north)": 27.839089, "longitude (degrees_east)": -80.470822}, "type": "Feature"}, {"bbox": [-80.202333, 27.224389, -80.202333, 27.224389], "geometry": {"coordinates": [-80.202333, 27.224389], "type": "Point"}, "id": "10", "properties": {"latitude (degrees_north)": 27.224389, "longitude (degrees_east)": -80.202333}, "type": "Feature"}, {"bbox": [-81.135278, 32.142778, -81.135278, 32.142778], "geometry": {"coordinates": [-81.135278, 32.142778], "type": "Point"}, "id": "11", "properties": {"latitude (degrees_north)": 32.142778, "longitude (degrees_east)": -81.135278}, "type": "Feature"}, {"bbox": [-80.355258, 27.590117, -80.355258, 27.590117], "geometry": {"coordinates": [-80.355258, 27.590117], "type": "Point"}, "id": "12", "properties": {"latitude (degrees_north)": 27.590117, "longitude (degrees_east)": -80.355258}, "type": "Feature"}, {"bbox": [-82.035537, 26.453428, -82.035537, 26.453428], "geometry": {"coordinates": [-82.035537, 26.453428], "type": "Point"}, "id": "13", "properties": {"latitude (degrees_north)": 26.453428, "longitude (degrees_east)": -82.035537}, "type": "Feature"}, {"bbox": [-81.558147, 30.386073, -81.558147, 30.386073], "geometry": {"coordinates": [-81.558147, 30.386073], "type": "Point"}, "id": "14", "properties": {"latitude (degrees_north)": 30.386073, "longitude (degrees_east)": -81.558147}, "type": "Feature"}, {"bbox": [-81.86088, 26.37803, -81.86088, 26.37803], "geometry": {"coordinates": [-81.86088, 26.37803], "type": "Point"}, "id": "15", "properties": {"latitude (degrees_north)": 26.37803, "longitude (degrees_east)": -81.86088}, "type": "Feature"}, {"bbox": [-76.183889, 35.506389, -76.183889, 35.506389], "geometry": {"coordinates": [-76.183889, 35.506389], "type": "Point"}, "id": "16", "properties": {"latitude (degrees_north)": 35.506389, "longitude (degrees_east)": -76.183889}, "type": "Feature"}, {"bbox": [-79.962864, 32.890452, -79.962864, 32.890452], "geometry": {"coordinates": [-79.962864, 32.890452], "type": "Point"}, "id": "17", "properties": {"latitude (degrees_north)": 32.890452, "longitude (degrees_east)": -79.962864}, "type": "Feature"}, {"bbox": [-76.58473, 34.98355, -76.58473, 34.98355], "geometry": {"coordinates": [-76.58473, 34.98355], "type": "Point"}, "id": "18", "properties": {"latitude (degrees_north)": 34.98355, "longitude (degrees_east)": -76.58473}, "type": "Feature"}, {"bbox": [-76.8781, 35.0015, -76.8781, 35.0015], "geometry": {"coordinates": [-76.8781, 35.0015], "type": "Point"}, "id": "19", "properties": {"latitude (degrees_north)": 35.0015, "longitude (degrees_east)": -76.8781}, "type": "Feature"}, {"bbox": [-76.47653, 35.1201, -76.47653, 35.1201], "geometry": {"coordinates": [-76.47653, 35.1201], "type": "Point"}, "id": "20", "properties": {"latitude (degrees_north)": 35.1201, "longitude (degrees_east)": -76.47653}, "type": "Feature"}, {"bbox": [-79.173934, 33.444612, -79.173934, 33.444612], "geometry": {"coordinates": [-79.173934, 33.444612], "type": "Point"}, "id": "21", "properties": {"latitude (degrees_north)": 33.444612, "longitude (degrees_east)": -79.173934}, "type": "Feature"}, {"bbox": [-80.5368, 27.9751, -80.5368, 27.9751], "geometry": {"coordinates": [-80.5368, 27.9751], "type": "Point"}, "id": "22", "properties": {"latitude (degrees_north)": 27.9751, "longitude (degrees_east)": -80.5368}, "type": "Feature"}, {"bbox": [-76.3057, 35.026167, -76.3057, 35.026167], "geometry": {"coordinates": [-76.3057, 35.026167], "type": "Point"}, "id": "23", "properties": {"latitude (degrees_north)": 35.026167, "longitude (degrees_east)": -76.3057}, "type": "Feature"}, {"bbox": [-76.42758, 35.150567, -76.42758, 35.150567], "geometry": {"coordinates": [-76.42758, 35.150567], "type": "Point"}, "id": "24", "properties": {"latitude (degrees_north)": 35.150567, "longitude (degrees_east)": -76.42758}, "type": "Feature"}, {"bbox": [-78.884148, 33.682793, -78.884148, 33.682793], "geometry": {"coordinates": [-78.884148, 33.682793], "type": "Point"}, "id": "25", "properties": {"latitude (degrees_north)": 33.682793, "longitude (degrees_east)": -78.884148}, "type": "Feature"}, {"bbox": [-79.896196, 32.859064, -79.896196, 32.859064], "geometry": {"coordinates": [-79.896196, 32.859064], "type": "Point"}, "id": "26", "properties": {"latitude (degrees_north)": 32.859064, "longitude (degrees_east)": -79.896196}, "type": "Feature"}, {"bbox": [-76.3433, 35.13125, -76.3433, 35.13125], "geometry": {"coordinates": [-76.3433, 35.13125], "type": "Point"}, "id": "27", "properties": {"latitude (degrees_north)": 35.13125, "longitude (degrees_east)": -76.3433}, "type": "Feature"}, {"bbox": [-78.7798, 33.7615, -78.7798, 33.7615], "geometry": {"coordinates": [-78.7798, 33.7615], "type": "Point"}, "id": "28", "properties": {"latitude (degrees_north)": 33.7615, "longitude (degrees_east)": -78.7798}, "type": "Feature"}, {"bbox": [-76.2006, 35.1225, -76.2006, 35.1225], "geometry": {"coordinates": [-76.2006, 35.1225], "type": "Point"}, "id": "29", "properties": {"latitude (degrees_north)": 35.1225, "longitude (degrees_east)": -76.2006}, "type": "Feature"}, {"bbox": [-76.81515, 34.94888, -76.81515, 34.94888], "geometry": {"coordinates": [-76.81515, 34.94888], "type": "Point"}, "id": "30", "properties": {"latitude (degrees_north)": 34.94888, "longitude (degrees_east)": -76.81515}, "type": "Feature"}, {"bbox": [-80.7913, 28.5985, -80.7913, 28.5985], "geometry": {"coordinates": [-80.7913, 28.5985], "type": "Point"}, "id": "31", "properties": {"latitude (degrees_north)": 28.5985, "longitude (degrees_east)": -80.7913}, "type": "Feature"}, {"bbox": [-79.363333, 33.074444, -79.363333, 33.074444], "geometry": {"coordinates": [-79.363333, 33.074444], "type": "Point"}, "id": "32", "properties": {"latitude (degrees_north)": 33.074444, "longitude (degrees_east)": -79.363333}, "type": "Feature"}, {"bbox": [-76.7374, 34.9661, -76.7374, 34.9661], "geometry": {"coordinates": [-76.7374, 34.9661], "type": "Point"}, "id": "33", "properties": {"latitude (degrees_north)": 34.9661, "longitude (degrees_east)": -76.7374}, "type": "Feature"}, {"bbox": [-76.95943, 35.01472, -76.95943, 35.01472], "geometry": {"coordinates": [-76.95943, 35.01472], "type": "Point"}, "id": "34", "properties": {"latitude (degrees_north)": 35.01472, "longitude (degrees_east)": -76.95943}, "type": "Feature"}, {"bbox": [-80.282867, 27.114183, -80.282867, 27.114183], "geometry": {"coordinates": [-80.282867, 27.114183], "type": "Point"}, "id": "35", "properties": {"latitude (degrees_north)": 27.114183, "longitude (degrees_east)": -80.282867}, "type": "Feature"}, {"bbox": [-79.910087, 32.802398, -79.910087, 32.802398], "geometry": {"coordinates": [-79.910087, 32.802398], "type": "Point"}, "id": "36", "properties": {"latitude (degrees_north)": 32.802398, "longitude (degrees_east)": -79.910087}, "type": "Feature"}, {"bbox": [-156.45505, 20.73121, -156.45505, 20.73121], "geometry": {"coordinates": [-156.45505, 20.73121], "type": "Point"}, "id": "37", "properties": {"latitude (degrees_north)": 20.73121, "longitude (degrees_east)": -156.45505}, "type": "Feature"}, {"bbox": [-71.38382, 41.63825, -71.38382, 41.63825], "geometry": {"coordinates": [-71.38382, 41.63825], "type": "Point"}, "id": "38", "properties": {"latitude (degrees_north)": 41.63825, "longitude (degrees_east)": -71.38382}, "type": "Feature"}, {"bbox": [-156.68139, 20.967083, -156.68139, 20.967083], "geometry": {"coordinates": [-156.68139, 20.967083], "type": "Point"}, "id": "39", "properties": {"latitude (degrees_north)": 20.967083, "longitude (degrees_east)": -156.68139}, "type": "Feature"}, {"bbox": [-156.691124, 20.949331, -156.691124, 20.949331], "geometry": {"coordinates": [-156.691124, 20.949331], "type": "Point"}, "id": "40", "properties": {"latitude (degrees_north)": 20.949331, "longitude (degrees_east)": -156.691124}, "type": "Feature"}, {"bbox": [-156.69278, 20.936669, -156.69278, 20.936669], "geometry": {"coordinates": [-156.69278, 20.936669], "type": "Point"}, "id": "41", "properties": {"latitude (degrees_north)": 20.936669, "longitude (degrees_east)": -156.69278}, "type": "Feature"}, {"bbox": [-156.689382, 20.910347, -156.689382, 20.910347], "geometry": {"coordinates": [-156.689382, 20.910347], "type": "Point"}, "id": "42", "properties": {"latitude (degrees_north)": 20.910347, "longitude (degrees_east)": -156.689382}, "type": "Feature"}, {"bbox": [-156.685931, 20.904476, -156.685931, 20.904476], "geometry": {"coordinates": [-156.685931, 20.904476], "type": "Point"}, "id": "43", "properties": {"latitude (degrees_north)": 20.904476, "longitude (degrees_east)": -156.685931}, "type": "Feature"}, {"bbox": [-156.67605, 20.86732, -156.67605, 20.86732], "geometry": {"coordinates": [-156.67605, 20.86732], "type": "Point"}, "id": "44", "properties": {"latitude (degrees_north)": 20.86732, "longitude (degrees_east)": -156.67605}, "type": "Feature"}, {"bbox": [-156.67374, 20.86485, -156.67374, 20.86485], "geometry": {"coordinates": [-156.67374, 20.86485], "type": "Point"}, "id": "45", "properties": {"latitude (degrees_north)": 20.86485, "longitude (degrees_east)": -156.67374}, "type": "Feature"}, {"bbox": [-156.67297, 20.86356, -156.67297, 20.86356], "geometry": {"coordinates": [-156.67297, 20.86356], "type": "Point"}, "id": "46", "properties": {"latitude (degrees_north)": 20.86356, "longitude (degrees_east)": -156.67297}, "type": "Feature"}, {"bbox": [-156.62289, 20.80916, -156.62289, 20.80916], "geometry": {"coordinates": [-156.62289, 20.80916], "type": "Point"}, "id": "47", "properties": {"latitude (degrees_north)": 20.80916, "longitude (degrees_east)": -156.62289}, "type": "Feature"}, {"bbox": [-156.61369, 20.80986, -156.61369, 20.80986], "geometry": {"coordinates": [-156.61369, 20.80986], "type": "Point"}, "id": "48", "properties": {"latitude (degrees_north)": 20.80986, "longitude (degrees_east)": -156.61369}, "type": "Feature"}, {"bbox": [-156.60661, 20.80915, -156.60661, 20.80915], "geometry": {"coordinates": [-156.60661, 20.80915], "type": "Point"}, "id": "49", "properties": {"latitude (degrees_north)": 20.80915, "longitude (degrees_east)": -156.60661}, "type": "Feature"}, {"bbox": [-156.58142, 20.79448, -156.58142, 20.79448], "geometry": {"coordinates": [-156.58142, 20.79448], "type": "Point"}, "id": "50", "properties": {"latitude (degrees_north)": 20.79448, "longitude (degrees_east)": -156.58142}, "type": "Feature"}, {"bbox": [-156.575211, 20.793809, -156.575211, 20.793809], "geometry": {"coordinates": [-156.575211, 20.793809], "type": "Point"}, "id": "51", "properties": {"latitude (degrees_north)": 20.793809, "longitude (degrees_east)": -156.575211}, "type": "Feature"}, {"bbox": [-156.567326, 20.792747, -156.567326, 20.792747], "geometry": {"coordinates": [-156.567326, 20.792747], "type": "Point"}, "id": "52", "properties": {"latitude (degrees_north)": 20.792747, "longitude (degrees_east)": -156.567326}, "type": "Feature"}, {"bbox": [-156.653035, 20.84236, -156.653035, 20.84236], "geometry": {"coordinates": [-156.653035, 20.84236], "type": "Point"}, "id": "53", "properties": {"latitude (degrees_north)": 20.84236, "longitude (degrees_east)": -156.653035}, "type": "Feature"}, {"bbox": [-156.619697, 20.808444, -156.619697, 20.808444], "geometry": {"coordinates": [-156.619697, 20.808444], "type": "Point"}, "id": "54", "properties": {"latitude (degrees_north)": 20.808444, "longitude (degrees_east)": -156.619697}, "type": "Feature"}, {"bbox": [-156.669442, 20.859233, -156.669442, 20.859233], "geometry": {"coordinates": [-156.669442, 20.859233], "type": "Point"}, "id": "55", "properties": {"latitude (degrees_north)": 20.859233, "longitude (degrees_east)": -156.669442}, "type": "Feature"}, {"bbox": [-156.667417, 20.994222, -156.667417, 20.994222], "geometry": {"coordinates": [-156.667417, 20.994222], "type": "Point"}, "id": "56", "properties": {"latitude (degrees_north)": 20.994222, "longitude (degrees_east)": -156.667417}, "type": "Feature"}, {"bbox": [-156.63834, 21.013058, -156.63834, 21.013058], "geometry": {"coordinates": [-156.63834, 21.013058], "type": "Point"}, "id": "57", "properties": {"latitude (degrees_north)": 21.013058, "longitude (degrees_east)": -156.63834}, "type": "Feature"}, {"bbox": [-156.64227, 21.011352, -156.64227, 21.011352], "geometry": {"coordinates": [-156.64227, 21.011352], "type": "Point"}, "id": "58", "properties": {"latitude (degrees_north)": 21.011352, "longitude (degrees_east)": -156.64227}, "type": "Feature"}, {"bbox": [-156.65084, 21.005, -156.65084, 21.005], "geometry": {"coordinates": [-156.65084, 21.005], "type": "Point"}, "id": "59", "properties": {"latitude (degrees_north)": 21.005, "longitude (degrees_east)": -156.65084}, "type": "Feature"}, {"bbox": [-156.65894, 21.004056, -156.65894, 21.004056], "geometry": {"coordinates": [-156.65894, 21.004056], "type": "Point"}, "id": "60", "properties": {"latitude (degrees_north)": 21.004056, "longitude (degrees_east)": -156.65894}, "type": "Feature"}, {"bbox": [-156.666746, 20.998924, -156.666746, 20.998924], "geometry": {"coordinates": [-156.666746, 20.998924], "type": "Point"}, "id": "61", "properties": {"latitude (degrees_north)": 20.998924, "longitude (degrees_east)": -156.666746}, "type": "Feature"}, {"bbox": [-156.673398, 20.982074, -156.673398, 20.982074], "geometry": {"coordinates": [-156.673398, 20.982074], "type": "Point"}, "id": "62", "properties": {"latitude (degrees_north)": 20.982074, "longitude (degrees_east)": -156.673398}, "type": "Feature"}, {"bbox": [-156.678, 20.976561, -156.678, 20.976561], "geometry": {"coordinates": [-156.678, 20.976561], "type": "Point"}, "id": "63", "properties": {"latitude (degrees_north)": 20.976561, "longitude (degrees_east)": -156.678}, "type": "Feature"}, {"bbox": [-156.459602, 20.755056, -156.459602, 20.755056], "geometry": {"coordinates": [-156.459602, 20.755056], "type": "Point"}, "id": "64", "properties": {"latitude (degrees_north)": 20.755056, "longitude (degrees_east)": -156.459602}, "type": "Feature"}, {"bbox": [-156.457881, 20.747334, -156.457881, 20.747334], "geometry": {"coordinates": [-156.457881, 20.747334], "type": "Point"}, "id": "65", "properties": {"latitude (degrees_north)": 20.747334, "longitude (degrees_east)": -156.457881}, "type": "Feature"}, {"bbox": [-156.45372, 20.730973, -156.45372, 20.730973], "geometry": {"coordinates": [-156.45372, 20.730973], "type": "Point"}, "id": "66", "properties": {"latitude (degrees_north)": 20.730973, "longitude (degrees_east)": -156.45372}, "type": "Feature"}, {"bbox": [-156.450077, 20.727434, -156.450077, 20.727434], "geometry": {"coordinates": [-156.450077, 20.727434], "type": "Point"}, "id": "67", "properties": {"latitude (degrees_north)": 20.727434, "longitude (degrees_east)": -156.450077}, "type": "Feature"}, {"bbox": [-156.448183, 20.721985, -156.448183, 20.721985], "geometry": {"coordinates": [-156.448183, 20.721985], "type": "Point"}, "id": "68", "properties": {"latitude (degrees_north)": 20.721985, "longitude (degrees_east)": -156.448183}, "type": "Feature"}, {"bbox": [-156.446596, 20.712908, -156.446596, 20.712908], "geometry": {"coordinates": [-156.446596, 20.712908], "type": "Point"}, "id": "69", "properties": {"latitude (degrees_north)": 20.712908, "longitude (degrees_east)": -156.446596}, "type": "Feature"}, {"bbox": [-156.441174, 20.653913, -156.441174, 20.653913], "geometry": {"coordinates": [-156.441174, 20.653913], "type": "Point"}, "id": "70", "properties": {"latitude (degrees_north)": 20.653913, "longitude (degrees_east)": -156.441174}, "type": "Feature"}, {"bbox": [-156.443859, 20.645598, -156.443859, 20.645598], "geometry": {"coordinates": [-156.443859, 20.645598], "type": "Point"}, "id": "71", "properties": {"latitude (degrees_north)": 20.645598, "longitude (degrees_east)": -156.443859}, "type": "Feature"}, {"bbox": [-156.447406, 20.639866, -156.447406, 20.639866], "geometry": {"coordinates": [-156.447406, 20.639866], "type": "Point"}, "id": "72", "properties": {"latitude (degrees_north)": 20.639866, "longitude (degrees_east)": -156.447406}, "type": "Feature"}, {"bbox": [-156.446183, 20.63061, -156.446183, 20.63061], "geometry": {"coordinates": [-156.446183, 20.63061], "type": "Point"}, "id": "73", "properties": {"latitude (degrees_north)": 20.63061, "longitude (degrees_east)": -156.446183}, "type": "Feature"}, {"bbox": [-156.437572, 20.618366, -156.437572, 20.618366], "geometry": {"coordinates": [-156.437572, 20.618366], "type": "Point"}, "id": "74", "properties": {"latitude (degrees_north)": 20.618366, "longitude (degrees_east)": -156.437572}, "type": "Feature"}, {"bbox": [-156.436853, 20.6138, -156.436853, 20.6138], "geometry": {"coordinates": [-156.436853, 20.6138], "type": "Point"}, "id": "75", "properties": {"latitude (degrees_north)": 20.6138, "longitude (degrees_east)": -156.436853}, "type": "Feature"}, {"bbox": [-156.503198, 20.796414, -156.503198, 20.796414], "geometry": {"coordinates": [-156.503198, 20.796414], "type": "Point"}, "id": "76", "properties": {"latitude (degrees_north)": 20.796414, "longitude (degrees_east)": -156.503198}, "type": "Feature"}, {"bbox": [-156.485587, 20.794936, -156.485587, 20.794936], "geometry": {"coordinates": [-156.485587, 20.794936], "type": "Point"}, "id": "77", "properties": {"latitude (degrees_north)": 20.794936, "longitude (degrees_east)": -156.485587}, "type": "Feature"}, {"bbox": [-156.466463, 20.784204, -156.466463, 20.784204], "geometry": {"coordinates": [-156.466463, 20.784204], "type": "Point"}, "id": "78", "properties": {"latitude (degrees_north)": 20.784204, "longitude (degrees_east)": -156.466463}, "type": "Feature"}, {"bbox": [-156.463176, 20.781403, -156.463176, 20.781403], "geometry": {"coordinates": [-156.463176, 20.781403], "type": "Point"}, "id": "79", "properties": {"latitude (degrees_north)": 20.781403, "longitude (degrees_east)": -156.463176}, "type": "Feature"}, {"bbox": [-156.460776, 20.774894, -156.460776, 20.774894], "geometry": {"coordinates": [-156.460776, 20.774894], "type": "Point"}, "id": "80", "properties": {"latitude (degrees_north)": 20.774894, "longitude (degrees_east)": -156.460776}, "type": "Feature"}, {"bbox": [-156.459344, 20.765132, -156.459344, 20.765132], "geometry": {"coordinates": [-156.459344, 20.765132], "type": "Point"}, "id": "81", "properties": {"latitude (degrees_north)": 20.765132, "longitude (degrees_east)": -156.459344}, "type": "Feature"}, {"bbox": [-156.445921, 20.702214, -156.445921, 20.702214], "geometry": {"coordinates": [-156.445921, 20.702214], "type": "Point"}, "id": "82", "properties": {"latitude (degrees_north)": 20.702214, "longitude (degrees_east)": -156.445921}, "type": "Feature"}, {"bbox": [-156.444632, 20.695939, -156.444632, 20.695939], "geometry": {"coordinates": [-156.444632, 20.695939], "type": "Point"}, "id": "83", "properties": {"latitude (degrees_north)": 20.695939, "longitude (degrees_east)": -156.444632}, "type": "Feature"}, {"bbox": [-156.444201, 20.69112, -156.444201, 20.69112], "geometry": {"coordinates": [-156.444201, 20.69112], "type": "Point"}, "id": "84", "properties": {"latitude (degrees_north)": 20.69112, "longitude (degrees_east)": -156.444201}, "type": "Feature"}, {"bbox": [-156.443524, 20.68156, -156.443524, 20.68156], "geometry": {"coordinates": [-156.443524, 20.68156], "type": "Point"}, "id": "85", "properties": {"latitude (degrees_north)": 20.68156, "longitude (degrees_east)": -156.443524}, "type": "Feature"}, {"bbox": [-156.442907, 20.669565, -156.442907, 20.669565], "geometry": {"coordinates": [-156.442907, 20.669565], "type": "Point"}, "id": "86", "properties": {"latitude (degrees_north)": 20.669565, "longitude (degrees_east)": -156.442907}, "type": "Feature"}, {"bbox": [-156.441968, 20.66339, -156.441968, 20.66339], "geometry": {"coordinates": [-156.441968, 20.66339], "type": "Point"}, "id": "87", "properties": {"latitude (degrees_north)": 20.66339, "longitude (degrees_east)": -156.441968}, "type": "Feature"}, {"bbox": [-156.510825, 20.790305, -156.510825, 20.790305], "geometry": {"coordinates": [-156.510825, 20.790305], "type": "Point"}, "id": "88", "properties": {"latitude (degrees_north)": 20.790305, "longitude (degrees_east)": -156.510825}, "type": "Feature"}, {"bbox": [-156.506735, 20.794917, -156.506735, 20.794917], "geometry": {"coordinates": [-156.506735, 20.794917], "type": "Point"}, "id": "89", "properties": {"latitude (degrees_north)": 20.794917, "longitude (degrees_east)": -156.506735}, "type": "Feature"}, {"bbox": [-156.692439, 20.941269, -156.692439, 20.941269], "geometry": {"coordinates": [-156.692439, 20.941269], "type": "Point"}, "id": "90", "properties": {"latitude (degrees_north)": 20.941269, "longitude (degrees_east)": -156.692439}, "type": "Feature"}, {"bbox": [-156.893479, 20.738818, -156.893479, 20.738818], "geometry": {"coordinates": [-156.893479, 20.738818], "type": "Point"}, "id": "91", "properties": {"latitude (degrees_north)": 20.738818, "longitude (degrees_east)": -156.893479}, "type": "Feature"}, {"bbox": [-156.887956, 20.741563, -156.887956, 20.741563], "geometry": {"coordinates": [-156.887956, 20.741563], "type": "Point"}, "id": "92", "properties": {"latitude (degrees_north)": 20.741563, "longitude (degrees_east)": -156.887956}, "type": "Feature"}, {"bbox": [-156.685048, 20.887449, -156.685048, 20.887449], "geometry": {"coordinates": [-156.685048, 20.887449], "type": "Point"}, "id": "93", "properties": {"latitude (degrees_north)": 20.887449, "longitude (degrees_east)": -156.685048}, "type": "Feature"}, {"bbox": [-156.686429, 20.885373, -156.686429, 20.885373], "geometry": {"coordinates": [-156.686429, 20.885373], "type": "Point"}, "id": "94", "properties": {"latitude (degrees_north)": 20.885373, "longitude (degrees_east)": -156.686429}, "type": "Feature"}, {"bbox": [-156.681359, 20.876911, -156.681359, 20.876911], "geometry": {"coordinates": [-156.681359, 20.876911], "type": "Point"}, "id": "95", "properties": {"latitude (degrees_north)": 20.876911, "longitude (degrees_east)": -156.681359}, "type": "Feature"}, {"bbox": [-156.678624, 20.871933, -156.678624, 20.871933], "geometry": {"coordinates": [-156.678624, 20.871933], "type": "Point"}, "id": "96", "properties": {"latitude (degrees_north)": 20.871933, "longitude (degrees_east)": -156.678624}, "type": "Feature"}, {"bbox": [-87.3499984741211, 27.31999969482422, -87.3499984741211, 27.31999969482422], "geometry": {"coordinates": [-87.3499984741211, 27.31999969482422], "type": "Point"}, "id": "97", "properties": {"latitude (degrees_north)": 27.31999969482422, "longitude (degrees_east)": -87.3499984741211}, "type": "Feature"}, {"bbox": [-87.35070037841797, 29.206600189208984, -87.35070037841797, 29.206600189208984], "geometry": {"coordinates": [-87.35070037841797, 29.206600189208984], "type": "Point"}, "id": "98", "properties": {"latitude (degrees_north)": 29.206600189208984, "longitude (degrees_east)": -87.35070037841797}, "type": "Feature"}, {"bbox": [-85.01699829101562, 25.649999618530277, -85.01699829101562, 25.649999618530277], "geometry": {"coordinates": [-85.01699829101562, 25.649999618530277], "type": "Point"}, "id": "99", "properties": {"latitude (degrees_north)": 25.649999618530277, "longitude (degrees_east)": -85.01699829101562}, "type": "Feature"}, {"bbox": [-87.2300033569336, 25.24799919128418, -87.2300033569336, 25.24799919128418], "geometry": {"coordinates": [-87.2300033569336, 25.24799919128418], "type": "Point"}, "id": "100", "properties": {"latitude (degrees_north)": 25.24799919128418, "longitude (degrees_east)": -87.2300033569336}, "type": "Feature"}, {"bbox": [-93.76499938964844, 26.25, -93.76499938964844, 26.25], "geometry": {"coordinates": [-93.76499938964844, 26.25], "type": "Point"}, "id": "101", "properties": {"latitude (degrees_north)": 26.25, "longitude (degrees_east)": -93.76499938964844}, "type": "Feature"}, {"bbox": [-86.0, 21.5, -86.0, 21.5], "geometry": {"coordinates": [-86.0, 21.5], "type": "Point"}, "id": "102", "properties": {"latitude (degrees_north)": 21.5, "longitude (degrees_east)": -86.0}, "type": "Feature"}, {"bbox": [-92.99829864501952, 22.0, -92.99829864501952, 22.0], "geometry": {"coordinates": [-92.99829864501952, 22.0], "type": "Point"}, "id": "103", "properties": {"latitude (degrees_north)": 22.0, "longitude (degrees_east)": -92.99829864501952}, "type": "Feature"}, {"bbox": [-96.3000030517578, 23.066999435424805, -96.3000030517578, 23.066999435424805], "geometry": {"coordinates": [-96.3000030517578, 23.066999435424805], "type": "Point"}, "id": "104", "properties": {"latitude (degrees_north)": 23.066999435424805, "longitude (degrees_east)": -96.3000030517578}, "type": "Feature"}, {"bbox": [-85.55000305175781, 26.57999992370605, -85.55000305175781, 26.57999992370605], "geometry": {"coordinates": [-85.55000305175781, 26.57999992370605], "type": "Point"}, "id": "105", "properties": {"latitude (degrees_north)": 26.57999992370605, "longitude (degrees_east)": -85.55000305175781}, "type": "Feature"}, {"bbox": [-87.04299926757812, 29.73200035095215, -87.04299926757812, 29.73200035095215], "geometry": {"coordinates": [-87.04299926757812, 29.73200035095215], "type": "Point"}, "id": "106", "properties": {"latitude (degrees_north)": 29.73200035095215, "longitude (degrees_east)": -87.04299926757812}, "type": "Feature"}, {"bbox": [-93.4800033569336, 25.56999969482422, -93.4800033569336, 25.56999969482422], "geometry": {"coordinates": [-93.4800033569336, 25.56999969482422], "type": "Point"}, "id": "107", "properties": {"latitude (degrees_north)": 25.56999969482422, "longitude (degrees_east)": -93.4800033569336}, "type": "Feature"}, {"bbox": [-95.03230285644533, 27.76370048522949, -95.03230285644533, 27.76370048522949], "geometry": {"coordinates": [-95.03230285644533, 27.76370048522949], "type": "Point"}, "id": "108", "properties": {"latitude (degrees_north)": 27.76370048522949, "longitude (degrees_east)": -95.03230285644533}, "type": "Feature"}, {"bbox": [-95.05979919433594, 27.809200286865234, -95.05979919433594, 27.809200286865234], "geometry": {"coordinates": [-95.05979919433594, 27.809200286865234], "type": "Point"}, "id": "109", "properties": {"latitude (degrees_north)": 27.809200286865234, "longitude (degrees_east)": -95.05979919433594}, "type": "Feature"}, {"bbox": [-84.83000183105469, 22.246999740600582, -84.83000183105469, 22.246999740600582], "geometry": {"coordinates": [-84.83000183105469, 22.246999740600582], "type": "Point"}, "id": "110", "properties": {"latitude (degrees_north)": 22.246999740600582, "longitude (degrees_east)": -84.83000183105469}, "type": "Feature"}, {"bbox": [-85.00330352783203, 24.96330070495605, -85.00330352783203, 24.96330070495605], "geometry": {"coordinates": [-85.00330352783203, 24.96330070495605], "type": "Point"}, "id": "111", "properties": {"latitude (degrees_north)": 24.96330070495605, "longitude (degrees_east)": -85.00330352783203}, "type": "Feature"}, {"bbox": [-95.04550170898438, 27.794700622558597, -95.04550170898438, 27.794700622558597], "geometry": {"coordinates": [-95.04550170898438, 27.794700622558597], "type": "Point"}, "id": "112", "properties": {"latitude (degrees_north)": 27.794700622558597, "longitude (degrees_east)": -95.04550170898438}, "type": "Feature"}, {"bbox": [-95.09200286865234, 26.020000457763672, -95.09200286865234, 26.020000457763672], "geometry": {"coordinates": [-95.09200286865234, 26.020000457763672], "type": "Point"}, "id": "113", "properties": {"latitude (degrees_north)": 26.020000457763672, "longitude (degrees_east)": -95.09200286865234}, "type": "Feature"}, {"bbox": [-88.38300323486328, 28.25200080871582, -88.38300323486328, 28.25200080871582], "geometry": {"coordinates": [-88.38300323486328, 28.25200080871582], "type": "Point"}, "id": "114", "properties": {"latitude (degrees_north)": 28.25200080871582, "longitude (degrees_east)": -88.38300323486328}, "type": "Feature"}, {"bbox": [-86.99669647216797, 28.5, -86.99669647216797, 28.5], "geometry": {"coordinates": [-86.99669647216797, 28.5], "type": "Point"}, "id": "115", "properties": {"latitude (degrees_north)": 28.5, "longitude (degrees_east)": -86.99669647216797}, "type": "Feature"}, {"bbox": [-92.00029754638672, 27.79199981689453, -92.00029754638672, 27.79199981689453], "geometry": {"coordinates": [-92.00029754638672, 27.79199981689453], "type": "Point"}, "id": "116", "properties": {"latitude (degrees_north)": 27.79199981689453, "longitude (degrees_east)": -92.00029754638672}, "type": "Feature"}, {"bbox": [-90.83370208740234, 26.74970054626465, -90.83370208740234, 26.74970054626465], "geometry": {"coordinates": [-90.83370208740234, 26.74970054626465], "type": "Point"}, "id": "117", "properties": {"latitude (degrees_north)": 26.74970054626465, "longitude (degrees_east)": -90.83370208740234}, "type": "Feature"}, {"bbox": [-86.50830078125, 28.78610038757324, -86.50830078125, 28.78610038757324], "geometry": {"coordinates": [-86.50830078125, 28.78610038757324], "type": "Point"}, "id": "118", "properties": {"latitude (degrees_north)": 28.78610038757324, "longitude (degrees_east)": -86.50830078125}, "type": "Feature"}, {"bbox": [-95.0199966430664, 21.3700008392334, -95.0199966430664, 21.3700008392334], "geometry": {"coordinates": [-95.0199966430664, 21.3700008392334], "type": "Point"}, "id": "119", "properties": {"latitude (degrees_north)": 21.3700008392334, "longitude (degrees_east)": -95.0199966430664}, "type": "Feature"}, {"bbox": [-92.5199966430664, 25.770000457763672, -92.5199966430664, 25.770000457763672], "geometry": {"coordinates": [-92.5199966430664, 25.770000457763672], "type": "Point"}, "id": "120", "properties": {"latitude (degrees_north)": 25.770000457763672, "longitude (degrees_east)": -92.5199966430664}, "type": "Feature"}, {"bbox": [-91.7396011352539, 27.756999969482425, -91.7396011352539, 27.756999969482425], "geometry": {"coordinates": [-91.7396011352539, 27.756999969482425], "type": "Point"}, "id": "121", "properties": {"latitude (degrees_north)": 27.756999969482425, "longitude (degrees_east)": -91.7396011352539}, "type": "Feature"}, {"bbox": [-84.13300323486328, 23.482999801635746, -84.13300323486328, 23.482999801635746], "geometry": {"coordinates": [-84.13300323486328, 23.482999801635746], "type": "Point"}, "id": "122", "properties": {"latitude (degrees_north)": 23.482999801635746, "longitude (degrees_east)": -84.13300323486328}, "type": "Feature"}, {"bbox": [-85.0199966430664, 25.0, -85.0199966430664, 25.0], "geometry": {"coordinates": [-85.0199966430664, 25.0], "type": "Point"}, "id": "123", "properties": {"latitude (degrees_north)": 25.0, "longitude (degrees_east)": -85.0199966430664}, "type": "Feature"}, {"bbox": [-94.22450256347656, 27.660499572753903, -94.22450256347656, 27.660499572753903], "geometry": {"coordinates": [-94.22450256347656, 27.660499572753903], "type": "Point"}, "id": "124", "properties": {"latitude (degrees_north)": 27.660499572753903, "longitude (degrees_east)": -94.22450256347656}, "type": "Feature"}, {"bbox": [-88.5031967163086, 27.832500457763672, -88.5031967163086, 27.832500457763672], "geometry": {"coordinates": [-88.5031967163086, 27.832500457763672], "type": "Point"}, "id": "125", "properties": {"latitude (degrees_north)": 27.832500457763672, "longitude (degrees_east)": -88.5031967163086}, "type": "Feature"}, {"bbox": [-87.6500015258789, 26.867000579833984, -87.6500015258789, 26.867000579833984], "geometry": {"coordinates": [-87.6500015258789, 26.867000579833984], "type": "Point"}, "id": "126", "properties": {"latitude (degrees_north)": 26.867000579833984, "longitude (degrees_east)": -87.6500015258789}, "type": "Feature"}, {"bbox": [-81.77999877929688, 24.200000762939453, -81.77999877929688, 24.200000762939453], "geometry": {"coordinates": [-81.77999877929688, 24.200000762939453], "type": "Point"}, "id": "127", "properties": {"latitude (degrees_north)": 24.200000762939453, "longitude (degrees_east)": -81.77999877929688}, "type": "Feature"}, {"bbox": [-89.98179626464844, 28.104700088500977, -89.98179626464844, 28.104700088500977], "geometry": {"coordinates": [-89.98179626464844, 28.104700088500977], "type": "Point"}, "id": "128", "properties": {"latitude (degrees_north)": 28.104700088500977, "longitude (degrees_east)": -89.98179626464844}, "type": "Feature"}, {"bbox": [-88.99720001220703, 28.584699630737305, -88.99720001220703, 28.584699630737305], "geometry": {"coordinates": [-88.99720001220703, 28.584699630737305], "type": "Point"}, "id": "129", "properties": {"latitude (degrees_north)": 28.584699630737305, "longitude (degrees_east)": -88.99720001220703}, "type": "Feature"}, {"bbox": [-85.58300018310547, 21.66699981689453, -85.58300018310547, 21.66699981689453], "geometry": {"coordinates": [-85.58300018310547, 21.66699981689453], "type": "Point"}, "id": "130", "properties": {"latitude (degrees_north)": 21.66699981689453, "longitude (degrees_east)": -85.58300018310547}, "type": "Feature"}, {"bbox": [-95.71119689941406, 27.65069961547852, -95.71119689941406, 27.65069961547852], "geometry": {"coordinates": [-95.71119689941406, 27.65069961547852], "type": "Point"}, "id": "131", "properties": {"latitude (degrees_north)": 27.65069961547852, "longitude (degrees_east)": -95.71119689941406}, "type": "Feature"}, {"bbox": [-85.72489929199219, 28.210899353027344, -85.72489929199219, 28.210899353027344], "geometry": {"coordinates": [-85.72489929199219, 28.210899353027344], "type": "Point"}, "id": "132", "properties": {"latitude (degrees_north)": 28.210899353027344, "longitude (degrees_east)": -85.72489929199219}, "type": "Feature"}, {"bbox": [-87.0999984741211, 29.16670036315918, -87.0999984741211, 29.16670036315918], "geometry": {"coordinates": [-87.0999984741211, 29.16670036315918], "type": "Point"}, "id": "133", "properties": {"latitude (degrees_north)": 29.16670036315918, "longitude (degrees_east)": -87.0999984741211}, "type": "Feature"}, {"bbox": [-90.10330200195312, 24.75169944763184, -90.10330200195312, 24.75169944763184], "geometry": {"coordinates": [-90.10330200195312, 24.75169944763184], "type": "Point"}, "id": "134", "properties": {"latitude (degrees_north)": 24.75169944763184, "longitude (degrees_east)": -90.10330200195312}, "type": "Feature"}, {"bbox": [-85.63300323486328, 21.600000381469727, -85.63300323486328, 21.600000381469727], "geometry": {"coordinates": [-85.63300323486328, 21.600000381469727], "type": "Point"}, "id": "135", "properties": {"latitude (degrees_north)": 21.600000381469727, "longitude (degrees_east)": -85.63300323486328}, "type": "Feature"}, {"bbox": [-96.53299713134766, 22.299999237060547, -96.53299713134766, 22.299999237060547], "geometry": {"coordinates": [-96.53299713134766, 22.299999237060547], "type": "Point"}, "id": "136", "properties": {"latitude (degrees_north)": 22.299999237060547, "longitude (degrees_east)": -96.53299713134766}, "type": "Feature"}, {"bbox": [-94.74829864501952, 26.32830047607422, -94.74829864501952, 26.32830047607422], "geometry": {"coordinates": [-94.74829864501952, 26.32830047607422], "type": "Point"}, "id": "137", "properties": {"latitude (degrees_north)": 26.32830047607422, "longitude (degrees_east)": -94.74829864501952}, "type": "Feature"}, {"bbox": [-94.74829864501952, 25.663299560546875, -94.74829864501952, 25.663299560546875], "geometry": {"coordinates": [-94.74829864501952, 25.663299560546875], "type": "Point"}, "id": "138", "properties": {"latitude (degrees_north)": 25.663299560546875, "longitude (degrees_east)": -94.74829864501952}, "type": "Feature"}, {"bbox": [-92.1677017211914, 26.283700942993164, -92.1677017211914, 26.283700942993164], "geometry": {"coordinates": [-92.1677017211914, 26.283700942993164], "type": "Point"}, "id": "139", "properties": {"latitude (degrees_north)": 26.283700942993164, "longitude (degrees_east)": -92.1677017211914}, "type": "Feature"}, {"bbox": [-95.01119995117188, 27.71699905395508, -95.01119995117188, 27.71699905395508], "geometry": {"coordinates": [-95.01119995117188, 27.71699905395508], "type": "Point"}, "id": "140", "properties": {"latitude (degrees_north)": 27.71699905395508, "longitude (degrees_east)": -95.01119995117188}, "type": "Feature"}, {"bbox": [-93.23500061035156, 23.40699958801269, -93.23500061035156, 23.40699958801269], "geometry": {"coordinates": [-93.23500061035156, 23.40699958801269], "type": "Point"}, "id": "141", "properties": {"latitude (degrees_north)": 23.40699958801269, "longitude (degrees_east)": -93.23500061035156}, "type": "Feature"}, {"bbox": [-86.83000183105469, 24.729999542236328, -86.83000183105469, 24.729999542236328], "geometry": {"coordinates": [-86.83000183105469, 24.729999542236328], "type": "Point"}, "id": "142", "properties": {"latitude (degrees_north)": 24.729999542236328, "longitude (degrees_east)": -86.83000183105469}, "type": "Feature"}, {"bbox": [-93.12999725341795, 26.5, -93.12999725341795, 26.5], "geometry": {"coordinates": [-93.12999725341795, 26.5], "type": "Point"}, "id": "143", "properties": {"latitude (degrees_north)": 26.5, "longitude (degrees_east)": -93.12999725341795}, "type": "Feature"}, {"bbox": [-84.0, 24.575000762939453, -84.0, 24.575000762939453], "geometry": {"coordinates": [-84.0, 24.575000762939453], "type": "Point"}, "id": "144", "properties": {"latitude (degrees_north)": 24.575000762939453, "longitude (degrees_east)": -84.0}, "type": "Feature"}, {"bbox": [-88.83319854736328, 27.76580047607422, -88.83319854736328, 27.76580047607422], "geometry": {"coordinates": [-88.83319854736328, 27.76580047607422], "type": "Point"}, "id": "145", "properties": {"latitude (degrees_north)": 27.76580047607422, "longitude (degrees_east)": -88.83319854736328}, "type": "Feature"}, {"bbox": [-84.83830261230469, 26.07699966430664, -84.83830261230469, 26.07699966430664], "geometry": {"coordinates": [-84.83830261230469, 26.07699966430664], "type": "Point"}, "id": "146", "properties": {"latitude (degrees_north)": 26.07699966430664, "longitude (degrees_east)": -84.83830261230469}, "type": "Feature"}, {"bbox": [-91.54499816894533, 27.943300247192383, -91.54499816894533, 27.943300247192383], "geometry": {"coordinates": [-91.54499816894533, 27.943300247192383], "type": "Point"}, "id": "147", "properties": {"latitude (degrees_north)": 27.943300247192383, "longitude (degrees_east)": -91.54499816894533}, "type": "Feature"}, {"bbox": [-90.052001953125, 23.392000198364254, -90.052001953125, 23.392000198364254], "geometry": {"coordinates": [-90.052001953125, 23.392000198364254], "type": "Point"}, "id": "148", "properties": {"latitude (degrees_north)": 23.392000198364254, "longitude (degrees_east)": -90.052001953125}, "type": "Feature"}, {"bbox": [-96.3322982788086, 26.530500411987305, -96.3322982788086, 26.530500411987305], "geometry": {"coordinates": [-96.3322982788086, 26.530500411987305], "type": "Point"}, "id": "149", "properties": {"latitude (degrees_north)": 26.530500411987305, "longitude (degrees_east)": -96.3322982788086}, "type": "Feature"}, {"bbox": [-94.39700317382812, 21.996999740600582, -94.39700317382812, 21.996999740600582], "geometry": {"coordinates": [-94.39700317382812, 21.996999740600582], "type": "Point"}, "id": "150", "properties": {"latitude (degrees_north)": 21.996999740600582, "longitude (degrees_east)": -94.39700317382812}, "type": "Feature"}, {"bbox": [-90.50250244140624, 27.966699600219727, -90.50250244140624, 27.966699600219727], "geometry": {"coordinates": [-90.50250244140624, 27.966699600219727], "type": "Point"}, "id": "151", "properties": {"latitude (degrees_north)": 27.966699600219727, "longitude (degrees_east)": -90.50250244140624}, "type": "Feature"}, {"bbox": [-86.44999694824219, 27.450000762939453, -86.44999694824219, 27.450000762939453], "geometry": {"coordinates": [-86.44999694824219, 27.450000762939453], "type": "Point"}, "id": "152", "properties": {"latitude (degrees_north)": 27.450000762939453, "longitude (degrees_east)": -86.44999694824219}, "type": "Feature"}, {"bbox": [-92.3332977294922, 27.183300018310547, -92.3332977294922, 27.183300018310547], "geometry": {"coordinates": [-92.3332977294922, 27.183300018310547], "type": "Point"}, "id": "153", "properties": {"latitude (degrees_north)": 27.183300018310547, "longitude (degrees_east)": -92.3332977294922}, "type": "Feature"}, {"bbox": [-95.02999877929688, 26.670000076293945, -95.02999877929688, 26.670000076293945], "geometry": {"coordinates": [-95.02999877929688, 26.670000076293945], "type": "Point"}, "id": "154", "properties": {"latitude (degrees_north)": 26.670000076293945, "longitude (degrees_east)": -95.02999877929688}, "type": "Feature"}, {"bbox": [-88.56999969482422, 25.472000122070312, -88.56999969482422, 25.472000122070312], "geometry": {"coordinates": [-88.56999969482422, 25.472000122070312], "type": "Point"}, "id": "155", "properties": {"latitude (degrees_north)": 25.472000122070312, "longitude (degrees_east)": -88.56999969482422}, "type": "Feature"}, {"bbox": [-92.0001983642578, 27.79199981689453, -92.0001983642578, 27.79199981689453], "geometry": {"coordinates": [-92.0001983642578, 27.79199981689453], "type": "Point"}, "id": "156", "properties": {"latitude (degrees_north)": 27.79199981689453, "longitude (degrees_east)": -92.0001983642578}, "type": "Feature"}, {"bbox": [-94.1999969482422, 27.738500595092773, -94.1999969482422, 27.738500595092773], "geometry": {"coordinates": [-94.1999969482422, 27.738500595092773], "type": "Point"}, "id": "157", "properties": {"latitude (degrees_north)": 27.738500595092773, "longitude (degrees_east)": -94.1999969482422}, "type": "Feature"}, {"bbox": [-92.8563003540039, 27.874799728393555, -92.8563003540039, 27.874799728393555], "geometry": {"coordinates": [-92.8563003540039, 27.874799728393555], "type": "Point"}, "id": "158", "properties": {"latitude (degrees_north)": 27.874799728393555, "longitude (degrees_east)": -92.8563003540039}, "type": "Feature"}, {"bbox": [-94.22470092773438, 27.65970039367676, -94.22470092773438, 27.65970039367676], "geometry": {"coordinates": [-94.22470092773438, 27.65970039367676], "type": "Point"}, "id": "159", "properties": {"latitude (degrees_north)": 27.65970039367676, "longitude (degrees_east)": -94.22470092773438}, "type": "Feature"}, {"bbox": [-88.9761962890625, 28.89539909362793, -88.9761962890625, 28.89539909362793], "geometry": {"coordinates": [-88.9761962890625, 28.89539909362793], "type": "Point"}, "id": "160", "properties": {"latitude (degrees_north)": 28.89539909362793, "longitude (degrees_east)": -88.9761962890625}, "type": "Feature"}, {"bbox": [-92.69200134277344, 27.549999237060547, -92.69200134277344, 27.549999237060547], "geometry": {"coordinates": [-92.69200134277344, 27.549999237060547], "type": "Point"}, "id": "161", "properties": {"latitude (degrees_north)": 27.549999237060547, "longitude (degrees_east)": -92.69200134277344}, "type": "Feature"}, {"bbox": [-84.31700134277344, 24.850000381469727, -84.31700134277344, 24.850000381469727], "geometry": {"coordinates": [-84.31700134277344, 24.850000381469727], "type": "Point"}, "id": "162", "properties": {"latitude (degrees_north)": 24.850000381469727, "longitude (degrees_east)": -84.31700134277344}, "type": "Feature"}, {"bbox": [-85.9800033569336, 23.75, -85.9800033569336, 23.75], "geometry": {"coordinates": [-85.9800033569336, 23.75], "type": "Point"}, "id": "163", "properties": {"latitude (degrees_north)": 23.75, "longitude (degrees_east)": -85.9800033569336}, "type": "Feature"}, {"bbox": [-88.36299896240234, 26.23200035095215, -88.36299896240234, 26.23200035095215], "geometry": {"coordinates": [-88.36299896240234, 26.23200035095215], "type": "Point"}, "id": "164", "properties": {"latitude (degrees_north)": 26.23200035095215, "longitude (degrees_east)": -88.36299896240234}, "type": "Feature"}, {"bbox": [-91.32479858398438, 27.97050094604492, -91.32479858398438, 27.97050094604492], "geometry": {"coordinates": [-91.32479858398438, 27.97050094604492], "type": "Point"}, "id": "165", "properties": {"latitude (degrees_north)": 27.97050094604492, "longitude (degrees_east)": -91.32479858398438}, "type": "Feature"}, {"bbox": [-85.67669677734375, 27.679800033569336, -85.67669677734375, 27.679800033569336], "geometry": {"coordinates": [-85.67669677734375, 27.679800033569336], "type": "Point"}, "id": "166", "properties": {"latitude (degrees_north)": 27.679800033569336, "longitude (degrees_east)": -85.67669677734375}, "type": "Feature"}, {"bbox": [-88.16470336914062, 28.758699417114254, -88.16470336914062, 28.758699417114254], "geometry": {"coordinates": [-88.16470336914062, 28.758699417114254], "type": "Point"}, "id": "167", "properties": {"latitude (degrees_north)": 28.758699417114254, "longitude (degrees_east)": -88.16470336914062}, "type": "Feature"}, {"bbox": [-85.5999984741211, 23.54199981689453, -85.5999984741211, 23.54199981689453], "geometry": {"coordinates": [-85.5999984741211, 23.54199981689453], "type": "Point"}, "id": "168", "properties": {"latitude (degrees_north)": 23.54199981689453, "longitude (degrees_east)": -85.5999984741211}, "type": "Feature"}, {"bbox": [-84.86499786376953, 26.566699981689453, -84.86499786376953, 26.566699981689453], "geometry": {"coordinates": [-84.86499786376953, 26.566699981689453], "type": "Point"}, "id": "169", "properties": {"latitude (degrees_north)": 26.566699981689453, "longitude (degrees_east)": -84.86499786376953}, "type": "Feature"}, {"bbox": [-95.4000015258789, 20.479999542236328, -95.4000015258789, 20.479999542236328], "geometry": {"coordinates": [-95.4000015258789, 20.479999542236328], "type": "Point"}, "id": "170", "properties": {"latitude (degrees_north)": 20.479999542236328, "longitude (degrees_east)": -95.4000015258789}, "type": "Feature"}, {"bbox": [-93.875, 26.81170082092285, -93.875, 26.81170082092285], "geometry": {"coordinates": [-93.875, 26.81170082092285], "type": "Point"}, "id": "171", "properties": {"latitude (degrees_north)": 26.81170082092285, "longitude (degrees_east)": -93.875}, "type": "Feature"}, {"bbox": [-93.64199829101562, 19.799999237060547, -93.64199829101562, 19.799999237060547], "geometry": {"coordinates": [-93.64199829101562, 19.799999237060547], "type": "Point"}, "id": "172", "properties": {"latitude (degrees_north)": 19.799999237060547, "longitude (degrees_east)": -93.64199829101562}, "type": "Feature"}, {"bbox": [-93.23169708251952, 26.40329933166504, -93.23169708251952, 26.40329933166504], "geometry": {"coordinates": [-93.23169708251952, 26.40329933166504], "type": "Point"}, "id": "173", "properties": {"latitude (degrees_north)": 26.40329933166504, "longitude (degrees_east)": -93.23169708251952}, "type": "Feature"}, {"bbox": [-88.66829681396484, 25.670000076293945, -88.66829681396484, 25.670000076293945], "geometry": {"coordinates": [-88.66829681396484, 25.670000076293945], "type": "Point"}, "id": "174", "properties": {"latitude (degrees_north)": 25.670000076293945, "longitude (degrees_east)": -88.66829681396484}, "type": "Feature"}, {"bbox": [-91.00379943847656, 26.99970054626465, -91.00379943847656, 26.99970054626465], "geometry": {"coordinates": [-91.00379943847656, 26.99970054626465], "type": "Point"}, "id": "175", "properties": {"latitude (degrees_north)": 26.99970054626465, "longitude (degrees_east)": -91.00379943847656}, "type": "Feature"}, {"bbox": [-86.4000015258789, 25.170000076293945, -86.4000015258789, 25.170000076293945], "geometry": {"coordinates": [-86.4000015258789, 25.170000076293945], "type": "Point"}, "id": "176", "properties": {"latitude (degrees_north)": 25.170000076293945, "longitude (degrees_east)": -86.4000015258789}, "type": "Feature"}, {"bbox": [-84.44999694824219, 26.132999420166016, -84.44999694824219, 26.132999420166016], "geometry": {"coordinates": [-84.44999694824219, 26.132999420166016], "type": "Point"}, "id": "177", "properties": {"latitude (degrees_north)": 26.132999420166016, "longitude (degrees_east)": -84.44999694824219}, "type": "Feature"}, {"bbox": [-88.08000183105469, 27.57999992370605, -88.08000183105469, 27.57999992370605], "geometry": {"coordinates": [-88.08000183105469, 27.57999992370605], "type": "Point"}, "id": "178", "properties": {"latitude (degrees_north)": 27.57999992370605, "longitude (degrees_east)": -88.08000183105469}, "type": "Feature"}, {"bbox": [-89.5, 24.5, -89.5, 24.5], "geometry": {"coordinates": [-89.5, 24.5], "type": "Point"}, "id": "179", "properties": {"latitude (degrees_north)": 24.5, "longitude (degrees_east)": -89.5}, "type": "Feature"}, {"bbox": [-95.78500366210938, 27.524999618530277, -95.78500366210938, 27.524999618530277], "geometry": {"coordinates": [-95.78500366210938, 27.524999618530277], "type": "Point"}, "id": "180", "properties": {"latitude (degrees_north)": 27.524999618530277, "longitude (degrees_east)": -95.78500366210938}, "type": "Feature"}, {"bbox": [-85.4000015258789, 22.8700008392334, -85.4000015258789, 22.8700008392334], "geometry": {"coordinates": [-85.4000015258789, 22.8700008392334], "type": "Point"}, "id": "181", "properties": {"latitude (degrees_north)": 22.8700008392334, "longitude (degrees_east)": -85.4000015258789}, "type": "Feature"}, {"bbox": [-86.78890228271484, 29.13400077819824, -86.78890228271484, 29.13400077819824], "geometry": {"coordinates": [-86.78890228271484, 29.13400077819824], "type": "Point"}, "id": "182", "properties": {"latitude (degrees_north)": 29.13400077819824, "longitude (degrees_east)": -86.78890228271484}, "type": "Feature"}, {"bbox": [-95.1750030517578, 20.757999420166016, -95.1750030517578, 20.757999420166016], "geometry": {"coordinates": [-95.1750030517578, 20.757999420166016], "type": "Point"}, "id": "183", "properties": {"latitude (degrees_north)": 20.757999420166016, "longitude (degrees_east)": -95.1750030517578}, "type": "Feature"}, {"bbox": [-88.943603515625, 28.797800064086918, -88.943603515625, 28.797800064086918], "geometry": {"coordinates": [-88.943603515625, 28.797800064086918], "type": "Point"}, "id": "184", "properties": {"latitude (degrees_north)": 28.797800064086918, "longitude (degrees_east)": -88.943603515625}, "type": "Feature"}, {"bbox": [-95.9718017578125, 26.01580047607422, -95.9718017578125, 26.01580047607422], "geometry": {"coordinates": [-95.9718017578125, 26.01580047607422], "type": "Point"}, "id": "185", "properties": {"latitude (degrees_north)": 26.01580047607422, "longitude (degrees_east)": -95.9718017578125}, "type": "Feature"}, {"bbox": [-96.01699829101562, 25.399999618530277, -96.01699829101562, 25.399999618530277], "geometry": {"coordinates": [-96.01699829101562, 25.399999618530277], "type": "Point"}, "id": "186", "properties": {"latitude (degrees_north)": 25.399999618530277, "longitude (degrees_east)": -96.01699829101562}, "type": "Feature"}, {"bbox": [-86.52999877929688, 27.350000381469727, -86.52999877929688, 27.350000381469727], "geometry": {"coordinates": [-86.52999877929688, 27.350000381469727], "type": "Point"}, "id": "187", "properties": {"latitude (degrees_north)": 27.350000381469727, "longitude (degrees_east)": -86.52999877929688}, "type": "Feature"}, {"bbox": [-94.3280029296875, 25.617000579833984, -94.3280029296875, 25.617000579833984], "geometry": {"coordinates": [-94.3280029296875, 25.617000579833984], "type": "Point"}, "id": "188", "properties": {"latitude (degrees_north)": 25.617000579833984, "longitude (degrees_east)": -94.3280029296875}, "type": "Feature"}, {"bbox": [-91.99849700927734, 27.74880027770996, -91.99849700927734, 27.74880027770996], "geometry": {"coordinates": [-91.99849700927734, 27.74880027770996], "type": "Point"}, "id": "189", "properties": {"latitude (degrees_north)": 27.74880027770996, "longitude (degrees_east)": -91.99849700927734}, "type": "Feature"}, {"bbox": [-87.7020034790039, 24.517000198364254, -87.7020034790039, 24.517000198364254], "geometry": {"coordinates": [-87.7020034790039, 24.517000198364254], "type": "Point"}, "id": "190", "properties": {"latitude (degrees_north)": 24.517000198364254, "longitude (degrees_east)": -87.7020034790039}, "type": "Feature"}, {"bbox": [-87.30000305175781, 28.530000686645508, -87.30000305175781, 28.530000686645508], "geometry": {"coordinates": [-87.30000305175781, 28.530000686645508], "type": "Point"}, "id": "191", "properties": {"latitude (degrees_north)": 28.530000686645508, "longitude (degrees_east)": -87.30000305175781}, "type": "Feature"}, {"bbox": [-85.1500015258789, 23.75, -85.1500015258789, 23.75], "geometry": {"coordinates": [-85.1500015258789, 23.75], "type": "Point"}, "id": "192", "properties": {"latitude (degrees_north)": 23.75, "longitude (degrees_east)": -85.1500015258789}, "type": "Feature"}, {"bbox": [-95.9000015258789, 19.670000076293945, -95.9000015258789, 19.670000076293945], "geometry": {"coordinates": [-95.9000015258789, 19.670000076293945], "type": "Point"}, "id": "193", "properties": {"latitude (degrees_north)": 19.670000076293945, "longitude (degrees_east)": -95.9000015258789}, "type": "Feature"}, {"bbox": [-94.74330139160156, 26.998300552368164, -94.74330139160156, 26.998300552368164], "geometry": {"coordinates": [-94.74330139160156, 26.998300552368164], "type": "Point"}, "id": "194", "properties": {"latitude (degrees_north)": 26.998300552368164, "longitude (degrees_east)": -94.74330139160156}, "type": "Feature"}, {"bbox": [-86.69999694824219, 27.600000381469727, -86.69999694824219, 27.600000381469727], "geometry": {"coordinates": [-86.69999694824219, 27.600000381469727], "type": "Point"}, "id": "195", "properties": {"latitude (degrees_north)": 27.600000381469727, "longitude (degrees_east)": -86.69999694824219}, "type": "Feature"}, {"bbox": [-94.83380126953124, 26.765499114990234, -94.83380126953124, 26.765499114990234], "geometry": {"coordinates": [-94.83380126953124, 26.765499114990234], "type": "Point"}, "id": "196", "properties": {"latitude (degrees_north)": 26.765499114990234, "longitude (degrees_east)": -94.83380126953124}, "type": "Feature"}, {"bbox": [-84.64669799804688, 26.117000579833984, -84.64669799804688, 26.117000579833984], "geometry": {"coordinates": [-84.64669799804688, 26.117000579833984], "type": "Point"}, "id": "197", "properties": {"latitude (degrees_north)": 26.117000579833984, "longitude (degrees_east)": -84.64669799804688}, "type": "Feature"}, {"bbox": [-94.99669647216795, 26.670000076293945, -94.99669647216795, 26.670000076293945], "geometry": {"coordinates": [-94.99669647216795, 26.670000076293945], "type": "Point"}, "id": "198", "properties": {"latitude (degrees_north)": 26.670000076293945, "longitude (degrees_east)": -94.99669647216795}, "type": "Feature"}, {"bbox": [-85.58300018310547, 25.482999801635746, -85.58300018310547, 25.482999801635746], "geometry": {"coordinates": [-85.58300018310547, 25.482999801635746], "type": "Point"}, "id": "199", "properties": {"latitude (degrees_north)": 25.482999801635746, "longitude (degrees_east)": -85.58300018310547}, "type": "Feature"}, {"bbox": [-86.6312026977539, 29.315200805664062, -86.6312026977539, 29.315200805664062], "geometry": {"coordinates": [-86.6312026977539, 29.315200805664062], "type": "Point"}, "id": "200", "properties": {"latitude (degrees_north)": 29.315200805664062, "longitude (degrees_east)": -86.6312026977539}, "type": "Feature"}, {"bbox": [-91.54499816894533, 27.943500518798828, -91.54499816894533, 27.943500518798828], "geometry": {"coordinates": [-91.54499816894533, 27.943500518798828], "type": "Point"}, "id": "201", "properties": {"latitude (degrees_north)": 27.943500518798828, "longitude (degrees_east)": -91.54499816894533}, "type": "Feature"}, {"bbox": [-88.17050170898438, 28.61669921875, -88.17050170898438, 28.61669921875], "geometry": {"coordinates": [-88.17050170898438, 28.61669921875], "type": "Point"}, "id": "202", "properties": {"latitude (degrees_north)": 28.61669921875, "longitude (degrees_east)": -88.17050170898438}, "type": "Feature"}, {"bbox": [-95.05999755859376, 27.809200286865234, -95.05999755859376, 27.809200286865234], "geometry": {"coordinates": [-95.05999755859376, 27.809200286865234], "type": "Point"}, "id": "203", "properties": {"latitude (degrees_north)": 27.809200286865234, "longitude (degrees_east)": -95.05999755859376}, "type": "Feature"}, {"bbox": [-86.96700286865234, 24.80299949645996, -86.96700286865234, 24.80299949645996], "geometry": {"coordinates": [-86.96700286865234, 24.80299949645996], "type": "Point"}, "id": "204", "properties": {"latitude (degrees_north)": 24.80299949645996, "longitude (degrees_east)": -86.96700286865234}, "type": "Feature"}, {"bbox": [-85.8499984741211, 25.21999931335449, -85.8499984741211, 25.21999931335449], "geometry": {"coordinates": [-85.8499984741211, 25.21999931335449], "type": "Point"}, "id": "205", "properties": {"latitude (degrees_north)": 25.21999931335449, "longitude (degrees_east)": -85.8499984741211}, "type": "Feature"}, {"bbox": [-94.38999938964844, 22.80500030517578, -94.38999938964844, 22.80500030517578], "geometry": {"coordinates": [-94.38999938964844, 22.80500030517578], "type": "Point"}, "id": "206", "properties": {"latitude (degrees_north)": 22.80500030517578, "longitude (degrees_east)": -94.38999938964844}, "type": "Feature"}, {"bbox": [-92.85679626464844, 27.8754997253418, -92.85679626464844, 27.8754997253418], "geometry": {"coordinates": [-92.85679626464844, 27.8754997253418], "type": "Point"}, "id": "207", "properties": {"latitude (degrees_north)": 27.8754997253418, "longitude (degrees_east)": -92.85679626464844}, "type": "Feature"}, {"bbox": [-93.0, 27.0, -93.0, 27.0], "geometry": {"coordinates": [-93.0, 27.0], "type": "Point"}, "id": "208", "properties": {"latitude (degrees_north)": 27.0, "longitude (degrees_east)": -93.0}, "type": "Feature"}, {"bbox": [-93.3000030517578, 21.950000762939453, -93.3000030517578, 21.950000762939453], "geometry": {"coordinates": [-93.3000030517578, 21.950000762939453], "type": "Point"}, "id": "209", "properties": {"latitude (degrees_north)": 21.950000762939453, "longitude (degrees_east)": -93.3000030517578}, "type": "Feature"}, {"bbox": [-92.83799743652344, 21.132999420166016, -92.83799743652344, 21.132999420166016], "geometry": {"coordinates": [-92.83799743652344, 21.132999420166016], "type": "Point"}, "id": "210", "properties": {"latitude (degrees_north)": 21.132999420166016, "longitude (degrees_east)": -92.83799743652344}, "type": "Feature"}, {"bbox": [-96.08570098876952, 26.01619911193848, -96.08570098876952, 26.01619911193848], "geometry": {"coordinates": [-96.08570098876952, 26.01619911193848], "type": "Point"}, "id": "211", "properties": {"latitude (degrees_north)": 26.01619911193848, "longitude (degrees_east)": -96.08570098876952}, "type": "Feature"}, {"bbox": [-86.21330261230469, 28.402099609375, -86.21330261230469, 28.402099609375], "geometry": {"coordinates": [-86.21330261230469, 28.402099609375], "type": "Point"}, "id": "212", "properties": {"latitude (degrees_north)": 28.402099609375, "longitude (degrees_east)": -86.21330261230469}, "type": "Feature"}, {"bbox": [-92.00669860839844, 27.343299865722656, -92.00669860839844, 27.343299865722656], "geometry": {"coordinates": [-92.00669860839844, 27.343299865722656], "type": "Point"}, "id": "213", "properties": {"latitude (degrees_north)": 27.343299865722656, "longitude (degrees_east)": -92.00669860839844}, "type": "Feature"}, {"bbox": [-95.4000015258789, 25.040000915527344, -95.4000015258789, 25.040000915527344], "geometry": {"coordinates": [-95.4000015258789, 25.040000915527344], "type": "Point"}, "id": "214", "properties": {"latitude (degrees_north)": 25.040000915527344, "longitude (degrees_east)": -95.4000015258789}, "type": "Feature"}, {"bbox": [-92.4000015258789, 22.024999618530277, -92.4000015258789, 22.024999618530277], "geometry": {"coordinates": [-92.4000015258789, 22.024999618530277], "type": "Point"}, "id": "215", "properties": {"latitude (degrees_north)": 22.024999618530277, "longitude (degrees_east)": -92.4000015258789}, "type": "Feature"}, {"bbox": [-84.91699981689453, 24.41699981689453, -84.91699981689453, 24.41699981689453], "geometry": {"coordinates": [-84.91699981689453, 24.41699981689453], "type": "Point"}, "id": "216", "properties": {"latitude (degrees_north)": 24.41699981689453, "longitude (degrees_east)": -84.91699981689453}, "type": "Feature"}, {"bbox": [-87.88890075683594, 29.24720001220703, -87.88890075683594, 29.24720001220703], "geometry": {"coordinates": [-87.88890075683594, 29.24720001220703], "type": "Point"}, "id": "217", "properties": {"latitude (degrees_north)": 29.24720001220703, "longitude (degrees_east)": -87.88890075683594}, "type": "Feature"}, {"bbox": [-85.1500015258789, 27.517000198364254, -85.1500015258789, 27.517000198364254], "geometry": {"coordinates": [-85.1500015258789, 27.517000198364254], "type": "Point"}, "id": "218", "properties": {"latitude (degrees_north)": 27.517000198364254, "longitude (degrees_east)": -85.1500015258789}, "type": "Feature"}, {"bbox": [-82.2699966430664, 23.25, -82.2699966430664, 23.25], "geometry": {"coordinates": [-82.2699966430664, 23.25], "type": "Point"}, "id": "219", "properties": {"latitude (degrees_north)": 23.25, "longitude (degrees_east)": -82.2699966430664}, "type": "Feature"}, {"bbox": [-89.70500183105469, 28.02300071716309, -89.70500183105469, 28.02300071716309], "geometry": {"coordinates": [-89.70500183105469, 28.02300071716309], "type": "Point"}, "id": "220", "properties": {"latitude (degrees_north)": 28.02300071716309, "longitude (degrees_east)": -89.70500183105469}, "type": "Feature"}, {"bbox": [-93.06999969482422, 27.450000762939453, -93.06999969482422, 27.450000762939453], "geometry": {"coordinates": [-93.06999969482422, 27.450000762939453], "type": "Point"}, "id": "221", "properties": {"latitude (degrees_north)": 27.450000762939453, "longitude (degrees_east)": -93.06999969482422}, "type": "Feature"}, {"bbox": [-87.16999816894531, 28.350000381469727, -87.16999816894531, 28.350000381469727], "geometry": {"coordinates": [-87.16999816894531, 28.350000381469727], "type": "Point"}, "id": "222", "properties": {"latitude (degrees_north)": 28.350000381469727, "longitude (degrees_east)": -87.16999816894531}, "type": "Feature"}, {"bbox": [-87.50029754638672, 28.766000747680664, -87.50029754638672, 28.766000747680664], "geometry": {"coordinates": [-87.50029754638672, 28.766000747680664], "type": "Point"}, "id": "223", "properties": {"latitude (degrees_north)": 28.766000747680664, "longitude (degrees_east)": -87.50029754638672}, "type": "Feature"}, {"bbox": [-88.82499694824219, 25.558000564575195, -88.82499694824219, 25.558000564575195], "geometry": {"coordinates": [-88.82499694824219, 25.558000564575195], "type": "Point"}, "id": "224", "properties": {"latitude (degrees_north)": 25.558000564575195, "longitude (degrees_east)": -88.82499694824219}, "type": "Feature"}, {"bbox": [-88.00129699707031, 26.0004997253418, -88.00129699707031, 26.0004997253418], "geometry": {"coordinates": [-88.00129699707031, 26.0004997253418], "type": "Point"}, "id": "225", "properties": {"latitude (degrees_north)": 26.0004997253418, "longitude (degrees_east)": -88.00129699707031}, "type": "Feature"}, {"bbox": [-96.0, 23.0, -96.0, 23.0], "geometry": {"coordinates": [-96.0, 23.0], "type": "Point"}, "id": "226", "properties": {"latitude (degrees_north)": 23.0, "longitude (degrees_east)": -96.0}, "type": "Feature"}, {"bbox": [-87.3499984741211, 24.799999237060547, -87.3499984741211, 24.799999237060547], "geometry": {"coordinates": [-87.3499984741211, 24.799999237060547], "type": "Point"}, "id": "227", "properties": {"latitude (degrees_north)": 24.799999237060547, "longitude (degrees_east)": -87.3499984741211}, "type": "Feature"}, {"bbox": [-84.58000183105469, 26.670000076293945, -84.58000183105469, 26.670000076293945], "geometry": {"coordinates": [-84.58000183105469, 26.670000076293945], "type": "Point"}, "id": "228", "properties": {"latitude (degrees_north)": 26.670000076293945, "longitude (degrees_east)": -84.58000183105469}, "type": "Feature"}, {"bbox": [-86.28299713134766, 21.575000762939453, -86.28299713134766, 21.575000762939453], "geometry": {"coordinates": [-86.28299713134766, 21.575000762939453], "type": "Point"}, "id": "229", "properties": {"latitude (degrees_north)": 21.575000762939453, "longitude (degrees_east)": -86.28299713134766}, "type": "Feature"}, {"bbox": [-82.9800033569336, 23.96999931335449, -82.9800033569336, 23.96999931335449], "geometry": {"coordinates": [-82.9800033569336, 23.96999931335449], "type": "Point"}, "id": "230", "properties": {"latitude (degrees_north)": 23.96999931335449, "longitude (degrees_east)": -82.9800033569336}, "type": "Feature"}, {"bbox": [-87.3582992553711, 29.09440040588379, -87.3582992553711, 29.09440040588379], "geometry": {"coordinates": [-87.3582992553711, 29.09440040588379], "type": "Point"}, "id": "231", "properties": {"latitude (degrees_north)": 29.09440040588379, "longitude (degrees_east)": -87.3582992553711}, "type": "Feature"}, {"bbox": [-88.97550201416016, 28.88870048522949, -88.97550201416016, 28.88870048522949], "geometry": {"coordinates": [-88.97550201416016, 28.88870048522949], "type": "Point"}, "id": "232", "properties": {"latitude (degrees_north)": 28.88870048522949, "longitude (degrees_east)": -88.97550201416016}, "type": "Feature"}, {"bbox": [-89.74720001220703, 27.86849975585937, -89.74720001220703, 27.86849975585937], "geometry": {"coordinates": [-89.74720001220703, 27.86849975585937], "type": "Point"}, "id": "233", "properties": {"latitude (degrees_north)": 27.86849975585937, "longitude (degrees_east)": -89.74720001220703}, "type": "Feature"}, {"bbox": [-81.62000274658203, 24.18000030517578, -81.62000274658203, 24.18000030517578], "geometry": {"coordinates": [-81.62000274658203, 24.18000030517578], "type": "Point"}, "id": "234", "properties": {"latitude (degrees_north)": 24.18000030517578, "longitude (degrees_east)": -81.62000274658203}, "type": "Feature"}, {"bbox": [-93.46829986572266, 27.75830078125, -93.46829986572266, 27.75830078125], "geometry": {"coordinates": [-93.46829986572266, 27.75830078125], "type": "Point"}, "id": "235", "properties": {"latitude (degrees_north)": 27.75830078125, "longitude (degrees_east)": -93.46829986572266}, "type": "Feature"}, {"bbox": [-82.16999816894531, 23.780000686645508, -82.16999816894531, 23.780000686645508], "geometry": {"coordinates": [-82.16999816894531, 23.780000686645508], "type": "Point"}, "id": "236", "properties": {"latitude (degrees_north)": 23.780000686645508, "longitude (degrees_east)": -82.16999816894531}, "type": "Feature"}, {"bbox": [-80.8499984741211, 23.649999618530277, -80.8499984741211, 23.649999618530277], "geometry": {"coordinates": [-80.8499984741211, 23.649999618530277], "type": "Point"}, "id": "237", "properties": {"latitude (degrees_north)": 23.649999618530277, "longitude (degrees_east)": -80.8499984741211}, "type": "Feature"}, {"bbox": [-94.052001953125, 24.933000564575195, -94.052001953125, 24.933000564575195], "geometry": {"coordinates": [-94.052001953125, 24.933000564575195], "type": "Point"}, "id": "238", "properties": {"latitude (degrees_north)": 24.933000564575195, "longitude (degrees_east)": -94.052001953125}, "type": "Feature"}, {"bbox": [-89.23300170898438, 28.04199981689453, -89.23300170898438, 28.04199981689453], "geometry": {"coordinates": [-89.23300170898438, 28.04199981689453], "type": "Point"}, "id": "239", "properties": {"latitude (degrees_north)": 28.04199981689453, "longitude (degrees_east)": -89.23300170898438}, "type": "Feature"}, {"bbox": [-83.30000305175781, 23.1299991607666, -83.30000305175781, 23.1299991607666], "geometry": {"coordinates": [-83.30000305175781, 23.1299991607666], "type": "Point"}, "id": "240", "properties": {"latitude (degrees_north)": 23.1299991607666, "longitude (degrees_east)": -83.30000305175781}, "type": "Feature"}, {"bbox": [-94.9499969482422, 23.31999969482422, -94.9499969482422, 23.31999969482422], "geometry": {"coordinates": [-94.9499969482422, 23.31999969482422], "type": "Point"}, "id": "241", "properties": {"latitude (degrees_north)": 23.31999969482422, "longitude (degrees_east)": -94.9499969482422}, "type": "Feature"}, {"bbox": [-96.10399627685548, 27.429800033569336, -96.10399627685548, 27.429800033569336], "geometry": {"coordinates": [-96.10399627685548, 27.429800033569336], "type": "Point"}, "id": "242", "properties": {"latitude (degrees_north)": 27.429800033569336, "longitude (degrees_east)": -96.10399627685548}, "type": "Feature"}, {"bbox": [-87.97270202636719, 29.069000244140625, -87.97270202636719, 29.069000244140625], "geometry": {"coordinates": [-87.97270202636719, 29.069000244140625], "type": "Point"}, "id": "243", "properties": {"latitude (degrees_north)": 29.069000244140625, "longitude (degrees_east)": -87.97270202636719}, "type": "Feature"}, {"bbox": [-94.99949645996094, 26.018800735473636, -94.99949645996094, 26.018800735473636], "geometry": {"coordinates": [-94.99949645996094, 26.018800735473636], "type": "Point"}, "id": "244", "properties": {"latitude (degrees_north)": 26.018800735473636, "longitude (degrees_east)": -94.99949645996094}, "type": "Feature"}, {"bbox": [-87.88890075683594, 29.201099395751957, -87.88890075683594, 29.201099395751957], "geometry": {"coordinates": [-87.88890075683594, 29.201099395751957], "type": "Point"}, "id": "245", "properties": {"latitude (degrees_north)": 29.201099395751957, "longitude (degrees_east)": -87.88890075683594}, "type": "Feature"}, {"bbox": [-87.87200164794922, 24.5, -87.87200164794922, 24.5], "geometry": {"coordinates": [-87.87200164794922, 24.5], "type": "Point"}, "id": "246", "properties": {"latitude (degrees_north)": 24.5, "longitude (degrees_east)": -87.87200164794922}, "type": "Feature"}, {"bbox": [-85.49700164794922, 21.875, -85.49700164794922, 21.875], "geometry": {"coordinates": [-85.49700164794922, 21.875], "type": "Point"}, "id": "247", "properties": {"latitude (degrees_north)": 21.875, "longitude (degrees_east)": -85.49700164794922}, "type": "Feature"}, {"bbox": [-95.49919891357422, 26.024799346923828, -95.49919891357422, 26.024799346923828], "geometry": {"coordinates": [-95.49919891357422, 26.024799346923828], "type": "Point"}, "id": "248", "properties": {"latitude (degrees_north)": 26.024799346923828, "longitude (degrees_east)": -95.49919891357422}, "type": "Feature"}, {"bbox": [-86.52999877929688, 27.670000076293945, -86.52999877929688, 27.670000076293945], "geometry": {"coordinates": [-86.52999877929688, 27.670000076293945], "type": "Point"}, "id": "249", "properties": {"latitude (degrees_north)": 27.670000076293945, "longitude (degrees_east)": -86.52999877929688}, "type": "Feature"}, {"bbox": [-91.32479858398438, 27.969200134277344, -91.32479858398438, 27.969200134277344], "geometry": {"coordinates": [-91.32479858398438, 27.969200134277344], "type": "Point"}, "id": "250", "properties": {"latitude (degrees_north)": 27.969200134277344, "longitude (degrees_east)": -91.32479858398438}, "type": "Feature"}, {"bbox": [-96.25, 26.75, -96.25, 26.75], "geometry": {"coordinates": [-96.25, 26.75], "type": "Point"}, "id": "251", "properties": {"latitude (degrees_north)": 26.75, "longitude (degrees_east)": -96.25}, "type": "Feature"}, {"bbox": [-92.99929809570312, 27.45680046081543, -92.99929809570312, 27.45680046081543], "geometry": {"coordinates": [-92.99929809570312, 27.45680046081543], "type": "Point"}, "id": "252", "properties": {"latitude (degrees_north)": 27.45680046081543, "longitude (degrees_east)": -92.99929809570312}, "type": "Feature"}, {"bbox": [-96.31120300292967, 26.01320075988769, -96.31120300292967, 26.01320075988769], "geometry": {"coordinates": [-96.31120300292967, 26.01320075988769], "type": "Point"}, "id": "253", "properties": {"latitude (degrees_north)": 26.01320075988769, "longitude (degrees_east)": -96.31120300292967}, "type": "Feature"}, {"bbox": [-89.9000015258789, 27.31999969482422, -89.9000015258789, 27.31999969482422], "geometry": {"coordinates": [-89.9000015258789, 27.31999969482422], "type": "Point"}, "id": "254", "properties": {"latitude (degrees_north)": 27.31999969482422, "longitude (degrees_east)": -89.9000015258789}, "type": "Feature"}, {"bbox": [-90.85800170898438, 26.799999237060547, -90.85800170898438, 26.799999237060547], "geometry": {"coordinates": [-90.85800170898438, 26.799999237060547], "type": "Point"}, "id": "255", "properties": {"latitude (degrees_north)": 26.799999237060547, "longitude (degrees_east)": -90.85800170898438}, "type": "Feature"}, {"bbox": [-85.90010070800781, 27.84830093383789, -85.90010070800781, 27.84830093383789], "geometry": {"coordinates": [-85.90010070800781, 27.84830093383789], "type": "Point"}, "id": "256", "properties": {"latitude (degrees_north)": 27.84830093383789, "longitude (degrees_east)": -85.90010070800781}, "type": "Feature"}, {"bbox": [-91.32469940185548, 27.9689998626709, -91.32469940185548, 27.9689998626709], "geometry": {"coordinates": [-91.32469940185548, 27.9689998626709], "type": "Point"}, "id": "257", "properties": {"latitude (degrees_north)": 27.9689998626709, "longitude (degrees_east)": -91.32469940185548}, "type": "Feature"}, {"bbox": [-85.55000305175781, 28.149999618530277, -85.55000305175781, 28.149999618530277], "geometry": {"coordinates": [-85.55000305175781, 28.149999618530277], "type": "Point"}, "id": "258", "properties": {"latitude (degrees_north)": 28.149999618530277, "longitude (degrees_east)": -85.55000305175781}, "type": "Feature"}, {"bbox": [-85.43299865722656, 21.700000762939453, -85.43299865722656, 21.700000762939453], "geometry": {"coordinates": [-85.43299865722656, 21.700000762939453], "type": "Point"}, "id": "259", "properties": {"latitude (degrees_north)": 21.700000762939453, "longitude (degrees_east)": -85.43299865722656}, "type": "Feature"}, {"bbox": [-80.34500122070312, 24.46999931335449, -80.34500122070312, 24.46999931335449], "geometry": {"coordinates": [-80.34500122070312, 24.46999931335449], "type": "Point"}, "id": "260", "properties": {"latitude (degrees_north)": 24.46999931335449, "longitude (degrees_east)": -80.34500122070312}, "type": "Feature"}, {"bbox": [-86.06999969482422, 22.03300094604492, -86.06999969482422, 22.03300094604492], "geometry": {"coordinates": [-86.06999969482422, 22.03300094604492], "type": "Point"}, "id": "261", "properties": {"latitude (degrees_north)": 22.03300094604492, "longitude (degrees_east)": -86.06999969482422}, "type": "Feature"}, {"bbox": [-88.94779968261719, 28.80290031433105, -88.94779968261719, 28.80290031433105], "geometry": {"coordinates": [-88.94779968261719, 28.80290031433105], "type": "Point"}, "id": "262", "properties": {"latitude (degrees_north)": 28.80290031433105, "longitude (degrees_east)": -88.94779968261719}, "type": "Feature"}, {"bbox": [-96.33670043945312, 27.126300811767575, -96.33670043945312, 27.126300811767575], "geometry": {"coordinates": [-96.33670043945312, 27.126300811767575], "type": "Point"}, "id": "263", "properties": {"latitude (degrees_north)": 27.126300811767575, "longitude (degrees_east)": -96.33670043945312}, "type": "Feature"}, {"bbox": [-96.25, 27.26000022888184, -96.25, 27.26000022888184], "geometry": {"coordinates": [-96.25, 27.26000022888184], "type": "Point"}, "id": "264", "properties": {"latitude (degrees_north)": 27.26000022888184, "longitude (degrees_east)": -96.25}, "type": "Feature"}, {"bbox": [-89.50669860839844, 28.093299865722656, -89.50669860839844, 28.093299865722656], "geometry": {"coordinates": [-89.50669860839844, 28.093299865722656], "type": "Point"}, "id": "265", "properties": {"latitude (degrees_north)": 28.093299865722656, "longitude (degrees_east)": -89.50669860839844}, "type": "Feature"}, {"bbox": [-92.970703125, 27.28230094909668, -92.970703125, 27.28230094909668], "geometry": {"coordinates": [-92.970703125, 27.28230094909668], "type": "Point"}, "id": "266", "properties": {"latitude (degrees_north)": 27.28230094909668, "longitude (degrees_east)": -92.970703125}, "type": "Feature"}, {"bbox": [-94.7699966430664, 26.551700592041016, -94.7699966430664, 26.551700592041016], "geometry": {"coordinates": [-94.7699966430664, 26.551700592041016], "type": "Point"}, "id": "267", "properties": {"latitude (degrees_north)": 26.551700592041016, "longitude (degrees_east)": -94.7699966430664}, "type": "Feature"}, {"bbox": [-85.53780364990234, 27.626300811767575, -85.53780364990234, 27.626300811767575], "geometry": {"coordinates": [-85.53780364990234, 27.626300811767575], "type": "Point"}, "id": "268", "properties": {"latitude (degrees_north)": 27.626300811767575, "longitude (degrees_east)": -85.53780364990234}, "type": "Feature"}, {"bbox": [-86.80000305175781, 24.232999801635746, -86.80000305175781, 24.232999801635746], "geometry": {"coordinates": [-86.80000305175781, 24.232999801635746], "type": "Point"}, "id": "269", "properties": {"latitude (degrees_north)": 24.232999801635746, "longitude (degrees_east)": -86.80000305175781}, "type": "Feature"}, {"bbox": [-85.52999877929688, 27.655000686645508, -85.52999877929688, 27.655000686645508], "geometry": {"coordinates": [-85.52999877929688, 27.655000686645508], "type": "Point"}, "id": "270", "properties": {"latitude (degrees_north)": 27.655000686645508, "longitude (degrees_east)": -85.52999877929688}, "type": "Feature"}, {"bbox": [-87.97889709472656, 27.94029998779297, -87.97889709472656, 27.94029998779297], "geometry": {"coordinates": [-87.97889709472656, 27.94029998779297], "type": "Point"}, "id": "271", "properties": {"latitude (degrees_north)": 27.94029998779297, "longitude (degrees_east)": -87.97889709472656}, "type": "Feature"}, {"bbox": [-84.63300323486328, 24.899999618530277, -84.63300323486328, 24.899999618530277], "geometry": {"coordinates": [-84.63300323486328, 24.899999618530277], "type": "Point"}, "id": "272", "properties": {"latitude (degrees_north)": 24.899999618530277, "longitude (degrees_east)": -84.63300323486328}, "type": "Feature"}, {"bbox": [-94.77799987792967, 24.68000030517578, -94.77799987792967, 24.68000030517578], "geometry": {"coordinates": [-94.77799987792967, 24.68000030517578], "type": "Point"}, "id": "273", "properties": {"latitude (degrees_north)": 24.68000030517578, "longitude (degrees_east)": -94.77799987792967}, "type": "Feature"}, {"bbox": [-84.6500015258789, 25.232999801635746, -84.6500015258789, 25.232999801635746], "geometry": {"coordinates": [-84.6500015258789, 25.232999801635746], "type": "Point"}, "id": "274", "properties": {"latitude (degrees_north)": 25.232999801635746, "longitude (degrees_east)": -84.6500015258789}, "type": "Feature"}, {"bbox": [-85.2699966430664, 23.28300094604492, -85.2699966430664, 23.28300094604492], "geometry": {"coordinates": [-85.2699966430664, 23.28300094604492], "type": "Point"}, "id": "275", "properties": {"latitude (degrees_north)": 23.28300094604492, "longitude (degrees_east)": -85.2699966430664}, "type": "Feature"}, {"bbox": [-86.24590301513672, 29.017900466918945, -86.24590301513672, 29.017900466918945], "geometry": {"coordinates": [-86.24590301513672, 29.017900466918945], "type": "Point"}, "id": "276", "properties": {"latitude (degrees_north)": 29.017900466918945, "longitude (degrees_east)": -86.24590301513672}, "type": "Feature"}, {"bbox": [-84.68299865722656, 24.867000579833984, -84.68299865722656, 24.867000579833984], "geometry": {"coordinates": [-84.68299865722656, 24.867000579833984], "type": "Point"}, "id": "277", "properties": {"latitude (degrees_north)": 24.867000579833984, "longitude (degrees_east)": -84.68299865722656}, "type": "Feature"}, {"bbox": [-86.83329772949219, 29.558300018310547, -86.83329772949219, 29.558300018310547], "geometry": {"coordinates": [-86.83329772949219, 29.558300018310547], "type": "Point"}, "id": "278", "properties": {"latitude (degrees_north)": 29.558300018310547, "longitude (degrees_east)": -86.83329772949219}, "type": "Feature"}, {"bbox": [-89.64550018310547, 28.502500534057617, -89.64550018310547, 28.502500534057617], "geometry": {"coordinates": [-89.64550018310547, 28.502500534057617], "type": "Point"}, "id": "279", "properties": {"latitude (degrees_north)": 28.502500534057617, "longitude (degrees_east)": -89.64550018310547}, "type": "Feature"}, {"bbox": [-94.95980072021484, 27.62779998779297, -94.95980072021484, 27.62779998779297], "geometry": {"coordinates": [-94.95980072021484, 27.62779998779297], "type": "Point"}, "id": "280", "properties": {"latitude (degrees_north)": 27.62779998779297, "longitude (degrees_east)": -94.95980072021484}, "type": "Feature"}, {"bbox": [-92.0, 25.16670036315918, -92.0, 25.16670036315918], "geometry": {"coordinates": [-92.0, 25.16670036315918], "type": "Point"}, "id": "281", "properties": {"latitude (degrees_north)": 25.16670036315918, "longitude (degrees_east)": -92.0}, "type": "Feature"}, {"bbox": [-93.002197265625, 27.75480079650879, -93.002197265625, 27.75480079650879], "geometry": {"coordinates": [-93.002197265625, 27.75480079650879], "type": "Point"}, "id": "282", "properties": {"latitude (degrees_north)": 27.75480079650879, "longitude (degrees_east)": -93.002197265625}, "type": "Feature"}, {"bbox": [-87.47000122070312, 27.0, -87.47000122070312, 27.0], "geometry": {"coordinates": [-87.47000122070312, 27.0], "type": "Point"}, "id": "283", "properties": {"latitude (degrees_north)": 27.0, "longitude (degrees_east)": -87.47000122070312}, "type": "Feature"}, {"bbox": [-88.49929809570312, 27.560699462890625, -88.49929809570312, 27.560699462890625], "geometry": {"coordinates": [-88.49929809570312, 27.560699462890625], "type": "Point"}, "id": "284", "properties": {"latitude (degrees_north)": 27.560699462890625, "longitude (degrees_east)": -88.49929809570312}, "type": "Feature"}, {"bbox": [-87.3499984741211, 28.899999618530277, -87.3499984741211, 28.899999618530277], "geometry": {"coordinates": [-87.3499984741211, 28.899999618530277], "type": "Point"}, "id": "285", "properties": {"latitude (degrees_north)": 28.899999618530277, "longitude (degrees_east)": -87.3499984741211}, "type": "Feature"}, {"bbox": [-80.54499816894531, 24.05299949645996, -80.54499816894531, 24.05299949645996], "geometry": {"coordinates": [-80.54499816894531, 24.05299949645996], "type": "Point"}, "id": "286", "properties": {"latitude (degrees_north)": 24.05299949645996, "longitude (degrees_east)": -80.54499816894531}, "type": "Feature"}, {"bbox": [-87.4260025024414, 25.349000930786133, -87.4260025024414, 25.349000930786133], "geometry": {"coordinates": [-87.4260025024414, 25.349000930786133], "type": "Point"}, "id": "287", "properties": {"latitude (degrees_north)": 25.349000930786133, "longitude (degrees_east)": -87.4260025024414}, "type": "Feature"}, {"bbox": [-84.2300033569336, 24.3799991607666, -84.2300033569336, 24.3799991607666], "geometry": {"coordinates": [-84.2300033569336, 24.3799991607666], "type": "Point"}, "id": "288", "properties": {"latitude (degrees_north)": 24.3799991607666, "longitude (degrees_east)": -84.2300033569336}, "type": "Feature"}, {"bbox": [-94.95999908447266, 27.62820053100586, -94.95999908447266, 27.62820053100586], "geometry": {"coordinates": [-94.95999908447266, 27.62820053100586], "type": "Point"}, "id": "289", "properties": {"latitude (degrees_north)": 27.62820053100586, "longitude (degrees_east)": -94.95999908447266}, "type": "Feature"}, {"bbox": [-90.50769805908205, 27.9242000579834, -90.50769805908205, 27.9242000579834], "geometry": {"coordinates": [-90.50769805908205, 27.9242000579834], "type": "Point"}, "id": "290", "properties": {"latitude (degrees_north)": 27.9242000579834, "longitude (degrees_east)": -90.50769805908205}, "type": "Feature"}, {"bbox": [-86.83000183105469, 22.492000579833984, -86.83000183105469, 22.492000579833984], "geometry": {"coordinates": [-86.83000183105469, 22.492000579833984], "type": "Point"}, "id": "291", "properties": {"latitude (degrees_north)": 22.492000579833984, "longitude (degrees_east)": -86.83000183105469}, "type": "Feature"}, {"bbox": [-85.48200225830078, 23.16699981689453, -85.48200225830078, 23.16699981689453], "geometry": {"coordinates": [-85.48200225830078, 23.16699981689453], "type": "Point"}, "id": "292", "properties": {"latitude (degrees_north)": 23.16699981689453, "longitude (degrees_east)": -85.48200225830078}, "type": "Feature"}, {"bbox": [-90.5011978149414, 28.02120018005371, -90.5011978149414, 28.02120018005371], "geometry": {"coordinates": [-90.5011978149414, 28.02120018005371], "type": "Point"}, "id": "293", "properties": {"latitude (degrees_north)": 28.02120018005371, "longitude (degrees_east)": -90.5011978149414}, "type": "Feature"}, {"bbox": [-92.1688003540039, 26.283300399780277, -92.1688003540039, 26.283300399780277], "geometry": {"coordinates": [-92.1688003540039, 26.283300399780277], "type": "Point"}, "id": "294", "properties": {"latitude (degrees_north)": 26.283300399780277, "longitude (degrees_east)": -92.1688003540039}, "type": "Feature"}, {"bbox": [-85.7699966430664, 24.007999420166016, -85.7699966430664, 24.007999420166016], "geometry": {"coordinates": [-85.7699966430664, 24.007999420166016], "type": "Point"}, "id": "295", "properties": {"latitude (degrees_north)": 24.007999420166016, "longitude (degrees_east)": -85.7699966430664}, "type": "Feature"}, {"bbox": [-89.93830108642578, 28.61050033569336, -89.93830108642578, 28.61050033569336], "geometry": {"coordinates": [-89.93830108642578, 28.61050033569336], "type": "Point"}, "id": "296", "properties": {"latitude (degrees_north)": 28.61050033569336, "longitude (degrees_east)": -89.93830108642578}, "type": "Feature"}, {"bbox": [-91.72799682617188, 22.617000579833984, -91.72799682617188, 22.617000579833984], "geometry": {"coordinates": [-91.72799682617188, 22.617000579833984], "type": "Point"}, "id": "297", "properties": {"latitude (degrees_north)": 22.617000579833984, "longitude (degrees_east)": -91.72799682617188}, "type": "Feature"}, {"bbox": [-84.5199966430664, 24.670000076293945, -84.5199966430664, 24.670000076293945], "geometry": {"coordinates": [-84.5199966430664, 24.670000076293945], "type": "Point"}, "id": "298", "properties": {"latitude (degrees_north)": 24.670000076293945, "longitude (degrees_east)": -84.5199966430664}, "type": "Feature"}, {"bbox": [-84.16999816894531, 24.200000762939453, -84.16999816894531, 24.200000762939453], "geometry": {"coordinates": [-84.16999816894531, 24.200000762939453], "type": "Point"}, "id": "299", "properties": {"latitude (degrees_north)": 24.200000762939453, "longitude (degrees_east)": -84.16999816894531}, "type": "Feature"}, {"bbox": [-93.1999969482422, 27.58580017089844, -93.1999969482422, 27.58580017089844], "geometry": {"coordinates": [-93.1999969482422, 27.58580017089844], "type": "Point"}, "id": "300", "properties": {"latitude (degrees_north)": 27.58580017089844, "longitude (degrees_east)": -93.1999969482422}, "type": "Feature"}, {"bbox": [-86.10299682617188, 23.790000915527344, -86.10299682617188, 23.790000915527344], "geometry": {"coordinates": [-86.10299682617188, 23.790000915527344], "type": "Point"}, "id": "301", "properties": {"latitude (degrees_north)": 23.790000915527344, "longitude (degrees_east)": -86.10299682617188}, "type": "Feature"}, {"bbox": [-94.16629791259766, 26.766700744628903, -94.16629791259766, 26.766700744628903], "geometry": {"coordinates": [-94.16629791259766, 26.766700744628903], "type": "Point"}, "id": "302", "properties": {"latitude (degrees_north)": 26.766700744628903, "longitude (degrees_east)": -94.16629791259766}, "type": "Feature"}, {"bbox": [-84.0, 24.586700439453125, -84.0, 24.586700439453125], "geometry": {"coordinates": [-84.0, 24.586700439453125], "type": "Point"}, "id": "303", "properties": {"latitude (degrees_north)": 24.586700439453125, "longitude (degrees_east)": -84.0}, "type": "Feature"}, {"bbox": [-90.4998016357422, 27.661800384521484, -90.4998016357422, 27.661800384521484], "geometry": {"coordinates": [-90.4998016357422, 27.661800384521484], "type": "Point"}, "id": "304", "properties": {"latitude (degrees_north)": 27.661800384521484, "longitude (degrees_east)": -90.4998016357422}, "type": "Feature"}, {"bbox": [-95.28700256347656, 27.761499404907227, -95.28700256347656, 27.761499404907227], "geometry": {"coordinates": [-95.28700256347656, 27.761499404907227], "type": "Point"}, "id": "305", "properties": {"latitude (degrees_north)": 27.761499404907227, "longitude (degrees_east)": -95.28700256347656}, "type": "Feature"}, {"bbox": [-86.36499786376953, 21.66699981689453, -86.36499786376953, 21.66699981689453], "geometry": {"coordinates": [-86.36499786376953, 21.66699981689453], "type": "Point"}, "id": "306", "properties": {"latitude (degrees_north)": 21.66699981689453, "longitude (degrees_east)": -86.36499786376953}, "type": "Feature"}, {"bbox": [-89.9469985961914, 26.290000915527344, -89.9469985961914, 26.290000915527344], "geometry": {"coordinates": [-89.9469985961914, 26.290000915527344], "type": "Point"}, "id": "307", "properties": {"latitude (degrees_north)": 26.290000915527344, "longitude (degrees_east)": -89.9469985961914}, "type": "Feature"}, {"bbox": [-83.33300018310547, 24.190000534057617, -83.33300018310547, 24.190000534057617], "geometry": {"coordinates": [-83.33300018310547, 24.190000534057617], "type": "Point"}, "id": "308", "properties": {"latitude (degrees_north)": 24.190000534057617, "longitude (degrees_east)": -83.33300018310547}, "type": "Feature"}, {"bbox": [-89.6500015258789, 24.700000762939453, -89.6500015258789, 24.700000762939453], "geometry": {"coordinates": [-89.6500015258789, 24.700000762939453], "type": "Point"}, "id": "309", "properties": {"latitude (degrees_north)": 24.700000762939453, "longitude (degrees_east)": -89.6500015258789}, "type": "Feature"}, {"bbox": [-84.96700286865234, 22.902000427246094, -84.96700286865234, 22.902000427246094], "geometry": {"coordinates": [-84.96700286865234, 22.902000427246094], "type": "Point"}, "id": "310", "properties": {"latitude (degrees_north)": 22.902000427246094, "longitude (degrees_east)": -84.96700286865234}, "type": "Feature"}, {"bbox": [-96.26699829101562, 21.0, -96.26699829101562, 21.0], "geometry": {"coordinates": [-96.26699829101562, 21.0], "type": "Point"}, "id": "311", "properties": {"latitude (degrees_north)": 21.0, "longitude (degrees_east)": -96.26699829101562}, "type": "Feature"}, {"bbox": [-88.37300109863281, 28.261999130249023, -88.37300109863281, 28.261999130249023], "geometry": {"coordinates": [-88.37300109863281, 28.261999130249023], "type": "Point"}, "id": "312", "properties": {"latitude (degrees_north)": 28.261999130249023, "longitude (degrees_east)": -88.37300109863281}, "type": "Feature"}, {"bbox": [-93.3000030517578, 22.25, -93.3000030517578, 22.25], "geometry": {"coordinates": [-93.3000030517578, 22.25], "type": "Point"}, "id": "313", "properties": {"latitude (degrees_north)": 22.25, "longitude (degrees_east)": -93.3000030517578}, "type": "Feature"}, {"bbox": [-86.99669647216797, 26.271699905395508, -86.99669647216797, 26.271699905395508], "geometry": {"coordinates": [-86.99669647216797, 26.271699905395508], "type": "Point"}, "id": "314", "properties": {"latitude (degrees_north)": 26.271699905395508, "longitude (degrees_east)": -86.99669647216797}, "type": "Feature"}, {"bbox": [-93.5, 27.3700008392334, -93.5, 27.3700008392334], "geometry": {"coordinates": [-93.5, 27.3700008392334], "type": "Point"}, "id": "315", "properties": {"latitude (degrees_north)": 27.3700008392334, "longitude (degrees_east)": -93.5}, "type": "Feature"}, {"bbox": [-84.63169860839844, 26.152999877929688, -84.63169860839844, 26.152999877929688], "geometry": {"coordinates": [-84.63169860839844, 26.152999877929688], "type": "Point"}, "id": "316", "properties": {"latitude (degrees_north)": 26.152999877929688, "longitude (degrees_east)": -84.63169860839844}, "type": "Feature"}, {"bbox": [-93.00669860839844, 27.25, -93.00669860839844, 27.25], "geometry": {"coordinates": [-93.00669860839844, 27.25], "type": "Point"}, "id": "317", "properties": {"latitude (degrees_north)": 27.25, "longitude (degrees_east)": -93.00669860839844}, "type": "Feature"}, {"bbox": [-95.7852020263672, 27.524999618530277, -95.7852020263672, 27.524999618530277], "geometry": {"coordinates": [-95.7852020263672, 27.524999618530277], "type": "Point"}, "id": "318", "properties": {"latitude (degrees_north)": 27.524999618530277, "longitude (degrees_east)": -95.7852020263672}, "type": "Feature"}, {"bbox": [-96.1050033569336, 27.43079948425293, -96.1050033569336, 27.43079948425293], "geometry": {"coordinates": [-96.1050033569336, 27.43079948425293], "type": "Point"}, "id": "319", "properties": {"latitude (degrees_north)": 27.43079948425293, "longitude (degrees_east)": -96.1050033569336}, "type": "Feature"}, {"bbox": [-93.1750030517578, 24.8700008392334, -93.1750030517578, 24.8700008392334], "geometry": {"coordinates": [-93.1750030517578, 24.8700008392334], "type": "Point"}, "id": "320", "properties": {"latitude (degrees_north)": 24.8700008392334, "longitude (degrees_east)": -93.1750030517578}, "type": "Feature"}, {"bbox": [-86.08609771728516, 29.16670036315918, -86.08609771728516, 29.16670036315918], "geometry": {"coordinates": [-86.08609771728516, 29.16670036315918], "type": "Point"}, "id": "321", "properties": {"latitude (degrees_north)": 29.16670036315918, "longitude (degrees_east)": -86.08609771728516}, "type": "Feature"}, {"bbox": [-95.697998046875, 24.59199905395508, -95.697998046875, 24.59199905395508], "geometry": {"coordinates": [-95.697998046875, 24.59199905395508], "type": "Point"}, "id": "322", "properties": {"latitude (degrees_north)": 24.59199905395508, "longitude (degrees_east)": -95.697998046875}, "type": "Feature"}, {"bbox": [-94.99909973144533, 26.66629981994629, -94.99909973144533, 26.66629981994629], "geometry": {"coordinates": [-94.99909973144533, 26.66629981994629], "type": "Point"}, "id": "323", "properties": {"latitude (degrees_north)": 26.66629981994629, "longitude (degrees_east)": -94.99909973144533}, "type": "Feature"}, {"bbox": [-94.80919647216795, 27.83580017089844, -94.80919647216795, 27.83580017089844], "geometry": {"coordinates": [-94.80919647216795, 27.83580017089844], "type": "Point"}, "id": "324", "properties": {"latitude (degrees_north)": 27.83580017089844, "longitude (degrees_east)": -94.80919647216795}, "type": "Feature"}, {"bbox": [-96.10399627685548, 27.43000030517578, -96.10399627685548, 27.43000030517578], "geometry": {"coordinates": [-96.10399627685548, 27.43000030517578], "type": "Point"}, "id": "325", "properties": {"latitude (degrees_north)": 27.43000030517578, "longitude (degrees_east)": -96.10399627685548}, "type": "Feature"}, {"bbox": [-85.625, 22.299999237060547, -85.625, 22.299999237060547], "geometry": {"coordinates": [-85.625, 22.299999237060547], "type": "Point"}, "id": "326", "properties": {"latitude (degrees_north)": 22.299999237060547, "longitude (degrees_east)": -85.625}, "type": "Feature"}, {"bbox": [-95.49829864501952, 27.038299560546875, -95.49829864501952, 27.038299560546875], "geometry": {"coordinates": [-95.49829864501952, 27.038299560546875], "type": "Point"}, "id": "327", "properties": {"latitude (degrees_north)": 27.038299560546875, "longitude (degrees_east)": -95.49829864501952}, "type": "Feature"}, {"bbox": [-88.36109924316406, 28.91670036315918, -88.36109924316406, 28.91670036315918], "geometry": {"coordinates": [-88.36109924316406, 28.91670036315918], "type": "Point"}, "id": "328", "properties": {"latitude (degrees_north)": 28.91670036315918, "longitude (degrees_east)": -88.36109924316406}, "type": "Feature"}, {"bbox": [-84.3499984741211, 26.030000686645508, -84.3499984741211, 26.030000686645508], "geometry": {"coordinates": [-84.3499984741211, 26.030000686645508], "type": "Point"}, "id": "329", "properties": {"latitude (degrees_north)": 26.030000686645508, "longitude (degrees_east)": -84.3499984741211}, "type": "Feature"}, {"bbox": [-82.3499984741211, 23.32999992370605, -82.3499984741211, 23.32999992370605], "geometry": {"coordinates": [-82.3499984741211, 23.32999992370605], "type": "Point"}, "id": "330", "properties": {"latitude (degrees_north)": 23.32999992370605, "longitude (degrees_east)": -82.3499984741211}, "type": "Feature"}, {"bbox": [-91.70800018310548, 25.649999618530277, -91.70800018310548, 25.649999618530277], "geometry": {"coordinates": [-91.70800018310548, 25.649999618530277], "type": "Point"}, "id": "331", "properties": {"latitude (degrees_north)": 25.649999618530277, "longitude (degrees_east)": -91.70800018310548}, "type": "Feature"}, {"bbox": [-95.11000061035156, 26.774999618530277, -95.11000061035156, 26.774999618530277], "geometry": {"coordinates": [-95.11000061035156, 26.774999618530277], "type": "Point"}, "id": "332", "properties": {"latitude (degrees_north)": 26.774999618530277, "longitude (degrees_east)": -95.11000061035156}, "type": "Feature"}, {"bbox": [-88.69290161132812, 28.688800811767575, -88.69290161132812, 28.688800811767575], "geometry": {"coordinates": [-88.69290161132812, 28.688800811767575], "type": "Point"}, "id": "333", "properties": {"latitude (degrees_north)": 28.688800811767575, "longitude (degrees_east)": -88.69290161132812}, "type": "Feature"}, {"bbox": [-89.99829864501953, 26.9950008392334, -89.99829864501953, 26.9950008392334], "geometry": {"coordinates": [-89.99829864501953, 26.9950008392334], "type": "Point"}, "id": "334", "properties": {"latitude (degrees_north)": 26.9950008392334, "longitude (degrees_east)": -89.99829864501953}, "type": "Feature"}, {"bbox": [-94.93000030517578, 27.32999992370605, -94.93000030517578, 27.32999992370605], "geometry": {"coordinates": [-94.93000030517578, 27.32999992370605], "type": "Point"}, "id": "335", "properties": {"latitude (degrees_north)": 27.32999992370605, "longitude (degrees_east)": -94.93000030517578}, "type": "Feature"}, {"bbox": [-90.16999816894533, 26.924999237060547, -90.16999816894533, 26.924999237060547], "geometry": {"coordinates": [-90.16999816894533, 26.924999237060547], "type": "Point"}, "id": "336", "properties": {"latitude (degrees_north)": 26.924999237060547, "longitude (degrees_east)": -90.16999816894533}, "type": "Feature"}, {"bbox": [-84.56700134277344, 25.78300094604492, -84.56700134277344, 25.78300094604492], "geometry": {"coordinates": [-84.56700134277344, 25.78300094604492], "type": "Point"}, "id": "337", "properties": {"latitude (degrees_north)": 25.78300094604492, "longitude (degrees_east)": -84.56700134277344}, "type": "Feature"}, {"bbox": [-92.99870300292967, 27.65679931640625, -92.99870300292967, 27.65679931640625], "geometry": {"coordinates": [-92.99870300292967, 27.65679931640625], "type": "Point"}, "id": "338", "properties": {"latitude (degrees_north)": 27.65679931640625, "longitude (degrees_east)": -92.99870300292967}, "type": "Feature"}, {"bbox": [-91.99929809570312, 27.548999786376957, -91.99929809570312, 27.548999786376957], "geometry": {"coordinates": [-91.99929809570312, 27.548999786376957], "type": "Point"}, "id": "339", "properties": {"latitude (degrees_north)": 27.548999786376957, "longitude (degrees_east)": -91.99929809570312}, "type": "Feature"}, {"bbox": [-87.74299621582031, 26.75, -87.74299621582031, 26.75], "geometry": {"coordinates": [-87.74299621582031, 26.75], "type": "Point"}, "id": "340", "properties": {"latitude (degrees_north)": 26.75, "longitude (degrees_east)": -87.74299621582031}, "type": "Feature"}, {"bbox": [-94.99929809570312, 26.669099807739254, -94.99929809570312, 26.669099807739254], "geometry": {"coordinates": [-94.99929809570312, 26.669099807739254], "type": "Point"}, "id": "341", "properties": {"latitude (degrees_north)": 26.669099807739254, "longitude (degrees_east)": -94.99929809570312}, "type": "Feature"}, {"bbox": [-87.5999984741211, 24.267000198364254, -87.5999984741211, 24.267000198364254], "geometry": {"coordinates": [-87.5999984741211, 24.267000198364254], "type": "Point"}, "id": "342", "properties": {"latitude (degrees_north)": 24.267000198364254, "longitude (degrees_east)": -87.5999984741211}, "type": "Feature"}, {"bbox": [-90.16799926757812, 24.96699905395508, -90.16799926757812, 24.96699905395508], "geometry": {"coordinates": [-90.16799926757812, 24.96699905395508], "type": "Point"}, "id": "343", "properties": {"latitude (degrees_north)": 24.96699905395508, "longitude (degrees_east)": -90.16799926757812}, "type": "Feature"}, {"bbox": [-96.19270324707033, 26.01020050048828, -96.19270324707033, 26.01020050048828], "geometry": {"coordinates": [-96.19270324707033, 26.01020050048828], "type": "Point"}, "id": "344", "properties": {"latitude (degrees_north)": 26.01020050048828, "longitude (degrees_east)": -96.19270324707033}, "type": "Feature"}, {"bbox": [-83.37000274658203, 24.31999969482422, -83.37000274658203, 24.31999969482422], "geometry": {"coordinates": [-83.37000274658203, 24.31999969482422], "type": "Point"}, "id": "345", "properties": {"latitude (degrees_north)": 24.31999969482422, "longitude (degrees_east)": -83.37000274658203}, "type": "Feature"}, {"bbox": [-85.01699829101562, 23.21699905395508, -85.01699829101562, 23.21699905395508], "geometry": {"coordinates": [-85.01699829101562, 23.21699905395508], "type": "Point"}, "id": "346", "properties": {"latitude (degrees_north)": 23.21699905395508, "longitude (degrees_east)": -85.01699829101562}, "type": "Feature"}, {"bbox": [-86.08300018310547, 21.674999237060547, -86.08300018310547, 21.674999237060547], "geometry": {"coordinates": [-86.08300018310547, 21.674999237060547], "type": "Point"}, "id": "347", "properties": {"latitude (degrees_north)": 21.674999237060547, "longitude (degrees_east)": -86.08300018310547}, "type": "Feature"}, {"bbox": [-88.5, 26.998300552368164, -88.5, 26.998300552368164], "geometry": {"coordinates": [-88.5, 26.998300552368164], "type": "Point"}, "id": "348", "properties": {"latitude (degrees_north)": 26.998300552368164, "longitude (degrees_east)": -88.5}, "type": "Feature"}, {"bbox": [-93.8730010986328, 24.74799919128418, -93.8730010986328, 24.74799919128418], "geometry": {"coordinates": [-93.8730010986328, 24.74799919128418], "type": "Point"}, "id": "349", "properties": {"latitude (degrees_north)": 24.74799919128418, "longitude (degrees_east)": -93.8730010986328}, "type": "Feature"}, {"bbox": [-85.97579956054688, 28.602399826049805, -85.97579956054688, 28.602399826049805], "geometry": {"coordinates": [-85.97579956054688, 28.602399826049805], "type": "Point"}, "id": "350", "properties": {"latitude (degrees_north)": 28.602399826049805, "longitude (degrees_east)": -85.97579956054688}, "type": "Feature"}, {"bbox": [-96.4375, 26.930200576782227, -96.4375, 26.930200576782227], "geometry": {"coordinates": [-96.4375, 26.930200576782227], "type": "Point"}, "id": "351", "properties": {"latitude (degrees_north)": 26.930200576782227, "longitude (degrees_east)": -96.4375}, "type": "Feature"}, {"bbox": [-93.19670104980467, 26.5049991607666, -93.19670104980467, 26.5049991607666], "geometry": {"coordinates": [-93.19670104980467, 26.5049991607666], "type": "Point"}, "id": "352", "properties": {"latitude (degrees_north)": 26.5049991607666, "longitude (degrees_east)": -93.19670104980467}, "type": "Feature"}, {"bbox": [-84.38700103759766, 25.363000869750977, -84.38700103759766, 25.363000869750977], "geometry": {"coordinates": [-84.38700103759766, 25.363000869750977], "type": "Point"}, "id": "353", "properties": {"latitude (degrees_north)": 25.363000869750977, "longitude (degrees_east)": -84.38700103759766}, "type": "Feature"}, {"bbox": [-82.72000122070312, 24.18000030517578, -82.72000122070312, 24.18000030517578], "geometry": {"coordinates": [-82.72000122070312, 24.18000030517578], "type": "Point"}, "id": "354", "properties": {"latitude (degrees_north)": 24.18000030517578, "longitude (degrees_east)": -82.72000122070312}, "type": "Feature"}, {"bbox": [-83.96700286865234, 23.191999435424805, -83.96700286865234, 23.191999435424805], "geometry": {"coordinates": [-83.96700286865234, 23.191999435424805], "type": "Point"}, "id": "355", "properties": {"latitude (degrees_north)": 23.191999435424805, "longitude (degrees_east)": -83.96700286865234}, "type": "Feature"}, {"bbox": [-87.05269622802734, 28.82719993591309, -87.05269622802734, 28.82719993591309], "geometry": {"coordinates": [-87.05269622802734, 28.82719993591309], "type": "Point"}, "id": "356", "properties": {"latitude (degrees_north)": 28.82719993591309, "longitude (degrees_east)": -87.05269622802734}, "type": "Feature"}, {"bbox": [-88.16419982910156, 28.76449966430664, -88.16419982910156, 28.76449966430664], "geometry": {"coordinates": [-88.16419982910156, 28.76449966430664], "type": "Point"}, "id": "357", "properties": {"latitude (degrees_north)": 28.76449966430664, "longitude (degrees_east)": -88.16419982910156}, "type": "Feature"}, {"bbox": [-92.1675033569336, 26.76650047302246, -92.1675033569336, 26.76650047302246], "geometry": {"coordinates": [-92.1675033569336, 26.76650047302246], "type": "Point"}, "id": "358", "properties": {"latitude (degrees_north)": 26.76650047302246, "longitude (degrees_east)": -92.1675033569336}, "type": "Feature"}, {"bbox": [-90.5, 26.998300552368164, -90.5, 26.998300552368164], "geometry": {"coordinates": [-90.5, 26.998300552368164], "type": "Point"}, "id": "359", "properties": {"latitude (degrees_north)": 26.998300552368164, "longitude (degrees_east)": -90.5}, "type": "Feature"}, {"bbox": [-86.05000305175781, 21.767000198364254, -86.05000305175781, 21.767000198364254], "geometry": {"coordinates": [-86.05000305175781, 21.767000198364254], "type": "Point"}, "id": "360", "properties": {"latitude (degrees_north)": 21.767000198364254, "longitude (degrees_east)": -86.05000305175781}, "type": "Feature"}, {"bbox": [-87.91699981689453, 28.617000579833984, -87.91699981689453, 28.617000579833984], "geometry": {"coordinates": [-87.91699981689453, 28.617000579833984], "type": "Point"}, "id": "361", "properties": {"latitude (degrees_north)": 28.617000579833984, "longitude (degrees_east)": -87.91699981689453}, "type": "Feature"}, {"bbox": [-94.1906967163086, 27.800199508666992, -94.1906967163086, 27.800199508666992], "geometry": {"coordinates": [-94.1906967163086, 27.800199508666992], "type": "Point"}, "id": "362", "properties": {"latitude (degrees_north)": 27.800199508666992, "longitude (degrees_east)": -94.1906967163086}, "type": "Feature"}, {"bbox": [-85.9988021850586, 27.0, -85.9988021850586, 27.0], "geometry": {"coordinates": [-85.9988021850586, 27.0], "type": "Point"}, "id": "363", "properties": {"latitude (degrees_north)": 27.0, "longitude (degrees_east)": -85.9988021850586}, "type": "Feature"}, {"bbox": [-95.50050354003906, 25.99970054626465, -95.50050354003906, 25.99970054626465], "geometry": {"coordinates": [-95.50050354003906, 25.99970054626465], "type": "Point"}, "id": "364", "properties": {"latitude (degrees_north)": 25.99970054626465, "longitude (degrees_east)": -95.50050354003906}, "type": "Feature"}, {"bbox": [-85.19999694824219, 22.020000457763672, -85.19999694824219, 22.020000457763672], "geometry": {"coordinates": [-85.19999694824219, 22.020000457763672], "type": "Point"}, "id": "365", "properties": {"latitude (degrees_north)": 22.020000457763672, "longitude (degrees_east)": -85.19999694824219}, "type": "Feature"}, {"bbox": [-89.73519897460938, 28.484699249267575, -89.73519897460938, 28.484699249267575], "geometry": {"coordinates": [-89.73519897460938, 28.484699249267575], "type": "Point"}, "id": "366", "properties": {"latitude (degrees_north)": 28.484699249267575, "longitude (degrees_east)": -89.73519897460938}, "type": "Feature"}, {"bbox": [-94.58830261230467, 27.83530044555664, -94.58830261230467, 27.83530044555664], "geometry": {"coordinates": [-94.58830261230467, 27.83530044555664], "type": "Point"}, "id": "367", "properties": {"latitude (degrees_north)": 27.83530044555664, "longitude (degrees_east)": -94.58830261230467}, "type": "Feature"}, {"bbox": [-85.43299865722656, 23.066999435424805, -85.43299865722656, 23.066999435424805], "geometry": {"coordinates": [-85.43299865722656, 23.066999435424805], "type": "Point"}, "id": "368", "properties": {"latitude (degrees_north)": 23.066999435424805, "longitude (degrees_east)": -85.43299865722656}, "type": "Feature"}, {"bbox": [-90.9666976928711, 26.024999618530277, -90.9666976928711, 26.024999618530277], "geometry": {"coordinates": [-90.9666976928711, 26.024999618530277], "type": "Point"}, "id": "369", "properties": {"latitude (degrees_north)": 26.024999618530277, "longitude (degrees_east)": -90.9666976928711}, "type": "Feature"}, {"bbox": [-86.33000183105469, 29.1299991607666, -86.33000183105469, 29.1299991607666], "geometry": {"coordinates": [-86.33000183105469, 29.1299991607666], "type": "Point"}, "id": "370", "properties": {"latitude (degrees_north)": 29.1299991607666, "longitude (degrees_east)": -86.33000183105469}, "type": "Feature"}, {"bbox": [-90.83450317382812, 26.74850082397461, -90.83450317382812, 26.74850082397461], "geometry": {"coordinates": [-90.83450317382812, 26.74850082397461], "type": "Point"}, "id": "371", "properties": {"latitude (degrees_north)": 26.74850082397461, "longitude (degrees_east)": -90.83450317382812}, "type": "Feature"}, {"bbox": [-92.99919891357422, 27.55680084228516, -92.99919891357422, 27.55680084228516], "geometry": {"coordinates": [-92.99919891357422, 27.55680084228516], "type": "Point"}, "id": "372", "properties": {"latitude (degrees_north)": 27.55680084228516, "longitude (degrees_east)": -92.99919891357422}, "type": "Feature"}, {"bbox": [-96.3499984741211, 24.06999969482422, -96.3499984741211, 24.06999969482422], "geometry": {"coordinates": [-96.3499984741211, 24.06999969482422], "type": "Point"}, "id": "373", "properties": {"latitude (degrees_north)": 24.06999969482422, "longitude (degrees_east)": -96.3499984741211}, "type": "Feature"}, {"bbox": [-86.13300323486328, 27.049999237060547, -86.13300323486328, 27.049999237060547], "geometry": {"coordinates": [-86.13300323486328, 27.049999237060547], "type": "Point"}, "id": "374", "properties": {"latitude (degrees_north)": 27.049999237060547, "longitude (degrees_east)": -86.13300323486328}, "type": "Feature"}, {"bbox": [-85.65799713134766, 21.822999954223636, -85.65799713134766, 21.822999954223636], "geometry": {"coordinates": [-85.65799713134766, 21.822999954223636], "type": "Point"}, "id": "375", "properties": {"latitude (degrees_north)": 21.822999954223636, "longitude (degrees_east)": -85.65799713134766}, "type": "Feature"}, {"bbox": [-85.63300323486328, 22.350000381469727, -85.63300323486328, 22.350000381469727], "geometry": {"coordinates": [-85.63300323486328, 22.350000381469727], "type": "Point"}, "id": "376", "properties": {"latitude (degrees_north)": 22.350000381469727, "longitude (degrees_east)": -85.63300323486328}, "type": "Feature"}, {"bbox": [-84.94999694824219, 25.632999420166016, -84.94999694824219, 25.632999420166016], "geometry": {"coordinates": [-84.94999694824219, 25.632999420166016], "type": "Point"}, "id": "377", "properties": {"latitude (degrees_north)": 25.632999420166016, "longitude (degrees_east)": -84.94999694824219}, "type": "Feature"}, {"bbox": [-92.99870300292967, 27.6564998626709, -92.99870300292967, 27.6564998626709], "geometry": {"coordinates": [-92.99870300292967, 27.6564998626709], "type": "Point"}, "id": "378", "properties": {"latitude (degrees_north)": 27.6564998626709, "longitude (degrees_east)": -92.99870300292967}, "type": "Feature"}, {"bbox": [-94.20369720458984, 27.737499237060547, -94.20369720458984, 27.737499237060547], "geometry": {"coordinates": [-94.20369720458984, 27.737499237060547], "type": "Point"}, "id": "379", "properties": {"latitude (degrees_north)": 27.737499237060547, "longitude (degrees_east)": -94.20369720458984}, "type": "Feature"}, {"bbox": [-94.55799865722656, 19.53300094604492, -94.55799865722656, 19.53300094604492], "geometry": {"coordinates": [-94.55799865722656, 19.53300094604492], "type": "Point"}, "id": "380", "properties": {"latitude (degrees_north)": 19.53300094604492, "longitude (degrees_east)": -94.55799865722656}, "type": "Feature"}, {"bbox": [-95.7113037109375, 27.65049934387207, -95.7113037109375, 27.65049934387207], "geometry": {"coordinates": [-95.7113037109375, 27.65049934387207], "type": "Point"}, "id": "381", "properties": {"latitude (degrees_north)": 27.65049934387207, "longitude (degrees_east)": -95.7113037109375}, "type": "Feature"}, {"bbox": [-82.23799896240234, 23.93000030517578, -82.23799896240234, 23.93000030517578], "geometry": {"coordinates": [-82.23799896240234, 23.93000030517578], "type": "Point"}, "id": "382", "properties": {"latitude (degrees_north)": 23.93000030517578, "longitude (degrees_east)": -82.23799896240234}, "type": "Feature"}, {"bbox": [-90.00299835205078, 26.997800827026367, -90.00299835205078, 26.997800827026367], "geometry": {"coordinates": [-90.00299835205078, 26.997800827026367], "type": "Point"}, "id": "383", "properties": {"latitude (degrees_north)": 26.997800827026367, "longitude (degrees_east)": -90.00299835205078}, "type": "Feature"}, {"bbox": [-93.25669860839844, 27.00830078125, -93.25669860839844, 27.00830078125], "geometry": {"coordinates": [-93.25669860839844, 27.00830078125], "type": "Point"}, "id": "384", "properties": {"latitude (degrees_north)": 27.00830078125, "longitude (degrees_east)": -93.25669860839844}, "type": "Feature"}, {"bbox": [-93.06999969482422, 26.670000076293945, -93.06999969482422, 26.670000076293945], "geometry": {"coordinates": [-93.06999969482422, 26.670000076293945], "type": "Point"}, "id": "385", "properties": {"latitude (degrees_north)": 26.670000076293945, "longitude (degrees_east)": -93.06999969482422}, "type": "Feature"}, {"bbox": [-86.47419738769531, 29.496700286865234, -86.47419738769531, 29.496700286865234], "geometry": {"coordinates": [-86.47419738769531, 29.496700286865234], "type": "Point"}, "id": "386", "properties": {"latitude (degrees_north)": 29.496700286865234, "longitude (degrees_east)": -86.47419738769531}, "type": "Feature"}, {"bbox": [-92.05799865722656, 24.325000762939453, -92.05799865722656, 24.325000762939453], "geometry": {"coordinates": [-92.05799865722656, 24.325000762939453], "type": "Point"}, "id": "387", "properties": {"latitude (degrees_north)": 24.325000762939453, "longitude (degrees_east)": -92.05799865722656}, "type": "Feature"}, {"bbox": [-85.68299865722656, 21.575000762939453, -85.68299865722656, 21.575000762939453], "geometry": {"coordinates": [-85.68299865722656, 21.575000762939453], "type": "Point"}, "id": "388", "properties": {"latitude (degrees_north)": 21.575000762939453, "longitude (degrees_east)": -85.68299865722656}, "type": "Feature"}, {"bbox": [-96.49700164794922, 25.232999801635746, -96.49700164794922, 25.232999801635746], "geometry": {"coordinates": [-96.49700164794922, 25.232999801635746], "type": "Point"}, "id": "389", "properties": {"latitude (degrees_north)": 25.232999801635746, "longitude (degrees_east)": -96.49700164794922}, "type": "Feature"}, {"bbox": [-86.23300170898438, 22.200000762939453, -86.23300170898438, 22.200000762939453], "geometry": {"coordinates": [-86.23300170898438, 22.200000762939453], "type": "Point"}, "id": "390", "properties": {"latitude (degrees_north)": 22.200000762939453, "longitude (degrees_east)": -86.23300170898438}, "type": "Feature"}, {"bbox": [-84.93499755859375, 25.61199951171875, -84.93499755859375, 25.61199951171875], "geometry": {"coordinates": [-84.93499755859375, 25.61199951171875], "type": "Point"}, "id": "391", "properties": {"latitude (degrees_north)": 25.61199951171875, "longitude (degrees_east)": -84.93499755859375}, "type": "Feature"}, {"bbox": [-85.4469985961914, 27.183000564575195, -85.4469985961914, 27.183000564575195], "geometry": {"coordinates": [-85.4469985961914, 27.183000564575195], "type": "Point"}, "id": "392", "properties": {"latitude (degrees_north)": 27.183000564575195, "longitude (degrees_east)": -85.4469985961914}, "type": "Feature"}, {"bbox": [-82.3499984741211, 23.58300018310547, -82.3499984741211, 23.58300018310547], "geometry": {"coordinates": [-82.3499984741211, 23.58300018310547], "type": "Point"}, "id": "393", "properties": {"latitude (degrees_north)": 23.58300018310547, "longitude (degrees_east)": -82.3499984741211}, "type": "Feature"}, {"bbox": [-94.97000122070312, 26.674999237060547, -94.97000122070312, 26.674999237060547], "geometry": {"coordinates": [-94.97000122070312, 26.674999237060547], "type": "Point"}, "id": "394", "properties": {"latitude (degrees_north)": 26.674999237060547, "longitude (degrees_east)": -94.97000122070312}, "type": "Feature"}, {"bbox": [-94.51699829101562, 20.46699905395508, -94.51699829101562, 20.46699905395508], "geometry": {"coordinates": [-94.51699829101562, 20.46699905395508], "type": "Point"}, "id": "395", "properties": {"latitude (degrees_north)": 20.46699905395508, "longitude (degrees_east)": -94.51699829101562}, "type": "Feature"}, {"bbox": [-89.70169830322266, 28.441699981689453, -89.70169830322266, 28.441699981689453], "geometry": {"coordinates": [-89.70169830322266, 28.441699981689453], "type": "Point"}, "id": "396", "properties": {"latitude (degrees_north)": 28.441699981689453, "longitude (degrees_east)": -89.70169830322266}, "type": "Feature"}, {"bbox": [-96.08300018310548, 22.26000022888184, -96.08300018310548, 22.26000022888184], "geometry": {"coordinates": [-96.08300018310548, 22.26000022888184], "type": "Point"}, "id": "397", "properties": {"latitude (degrees_north)": 22.26000022888184, "longitude (degrees_east)": -96.08300018310548}, "type": "Feature"}, {"bbox": [-84.50330352783203, 25.948299407958984, -84.50330352783203, 25.948299407958984], "geometry": {"coordinates": [-84.50330352783203, 25.948299407958984], "type": "Point"}, "id": "398", "properties": {"latitude (degrees_north)": 25.948299407958984, "longitude (degrees_east)": -84.50330352783203}, "type": "Feature"}, {"bbox": [-83.4749984741211, 23.968000411987305, -83.4749984741211, 23.968000411987305], "geometry": {"coordinates": [-83.4749984741211, 23.968000411987305], "type": "Point"}, "id": "399", "properties": {"latitude (degrees_north)": 23.968000411987305, "longitude (degrees_east)": -83.4749984741211}, "type": "Feature"}, {"bbox": [-93.24669647216795, 26.33329963684082, -93.24669647216795, 26.33329963684082], "geometry": {"coordinates": [-93.24669647216795, 26.33329963684082], "type": "Point"}, "id": "400", "properties": {"latitude (degrees_north)": 26.33329963684082, "longitude (degrees_east)": -93.24669647216795}, "type": "Feature"}, {"bbox": [-90.5, 27.861799240112305, -90.5, 27.861799240112305], "geometry": {"coordinates": [-90.5, 27.861799240112305], "type": "Point"}, "id": "401", "properties": {"latitude (degrees_north)": 27.861799240112305, "longitude (degrees_east)": -90.5}, "type": "Feature"}, {"bbox": [-94.4499969482422, 20.0, -94.4499969482422, 20.0], "geometry": {"coordinates": [-94.4499969482422, 20.0], "type": "Point"}, "id": "402", "properties": {"latitude (degrees_north)": 20.0, "longitude (degrees_east)": -94.4499969482422}, "type": "Feature"}, {"bbox": [-96.20970153808594, 27.09970092773437, -96.20970153808594, 27.09970092773437], "geometry": {"coordinates": [-96.20970153808594, 27.09970092773437], "type": "Point"}, "id": "403", "properties": {"latitude (degrees_north)": 27.09970092773437, "longitude (degrees_east)": -96.20970153808594}, "type": "Feature"}, {"bbox": [-84.88960266113281, 27.50029945373535, -84.88960266113281, 27.50029945373535], "geometry": {"coordinates": [-84.88960266113281, 27.50029945373535], "type": "Point"}, "id": "404", "properties": {"latitude (degrees_north)": 27.50029945373535, "longitude (degrees_east)": -84.88960266113281}, "type": "Feature"}, {"bbox": [-93.5832977294922, 26.36000061035156, -93.5832977294922, 26.36000061035156], "geometry": {"coordinates": [-93.5832977294922, 26.36000061035156], "type": "Point"}, "id": "405", "properties": {"latitude (degrees_north)": 26.36000061035156, "longitude (degrees_east)": -93.5832977294922}, "type": "Feature"}, {"bbox": [-93.08000183105467, 24.0, -93.08000183105467, 24.0], "geometry": {"coordinates": [-93.08000183105467, 24.0], "type": "Point"}, "id": "406", "properties": {"latitude (degrees_north)": 24.0, "longitude (degrees_east)": -93.08000183105467}, "type": "Feature"}, {"bbox": [-85.75, 23.96699905395508, -85.75, 23.96699905395508], "geometry": {"coordinates": [-85.75, 23.96699905395508], "type": "Point"}, "id": "407", "properties": {"latitude (degrees_north)": 23.96699905395508, "longitude (degrees_east)": -85.75}, "type": "Feature"}, {"bbox": [-85.71700286865234, 23.482999801635746, -85.71700286865234, 23.482999801635746], "geometry": {"coordinates": [-85.71700286865234, 23.482999801635746], "type": "Point"}, "id": "408", "properties": {"latitude (degrees_north)": 23.482999801635746, "longitude (degrees_east)": -85.71700286865234}, "type": "Feature"}, {"bbox": [-91.27999877929688, 25.96999931335449, -91.27999877929688, 25.96999931335449], "geometry": {"coordinates": [-91.27999877929688, 25.96999931335449], "type": "Point"}, "id": "409", "properties": {"latitude (degrees_north)": 25.96999931335449, "longitude (degrees_east)": -91.27999877929688}, "type": "Feature"}, {"bbox": [-85.06999969482422, 25.6299991607666, -85.06999969482422, 25.6299991607666], "geometry": {"coordinates": [-85.06999969482422, 25.6299991607666], "type": "Point"}, "id": "410", "properties": {"latitude (degrees_north)": 25.6299991607666, "longitude (degrees_east)": -85.06999969482422}, "type": "Feature"}, {"bbox": [-83.31500244140625, 23.517000198364254, -83.31500244140625, 23.517000198364254], "geometry": {"coordinates": [-83.31500244140625, 23.517000198364254], "type": "Point"}, "id": "411", "properties": {"latitude (degrees_north)": 23.517000198364254, "longitude (degrees_east)": -83.31500244140625}, "type": "Feature"}, {"bbox": [-88.668701171875, 25.6692008972168, -88.668701171875, 25.6692008972168], "geometry": {"coordinates": [-88.668701171875, 25.6692008972168], "type": "Point"}, "id": "412", "properties": {"latitude (degrees_north)": 25.6692008972168, "longitude (degrees_east)": -88.668701171875}, "type": "Feature"}, {"bbox": [-90.33000183105467, 23.96999931335449, -90.33000183105467, 23.96999931335449], "geometry": {"coordinates": [-90.33000183105467, 23.96999931335449], "type": "Point"}, "id": "413", "properties": {"latitude (degrees_north)": 23.96999931335449, "longitude (degrees_east)": -90.33000183105467}, "type": "Feature"}, {"bbox": [-92.78170013427734, 24.91670036315918, -92.78170013427734, 24.91670036315918], "geometry": {"coordinates": [-92.78170013427734, 24.91670036315918], "type": "Point"}, "id": "414", "properties": {"latitude (degrees_north)": 24.91670036315918, "longitude (degrees_east)": -92.78170013427734}, "type": "Feature"}, {"bbox": [-94.4020004272461, 19.6299991607666, -94.4020004272461, 19.6299991607666], "geometry": {"coordinates": [-94.4020004272461, 19.6299991607666], "type": "Point"}, "id": "415", "properties": {"latitude (degrees_north)": 19.6299991607666, "longitude (degrees_east)": -94.4020004272461}, "type": "Feature"}, {"bbox": [-88.0, 26.50169944763184, -88.0, 26.50169944763184], "geometry": {"coordinates": [-88.0, 26.50169944763184], "type": "Point"}, "id": "416", "properties": {"latitude (degrees_north)": 26.50169944763184, "longitude (degrees_east)": -88.0}, "type": "Feature"}, {"bbox": [-87.0, 29.0, -87.0, 29.0], "geometry": {"coordinates": [-87.0, 29.0], "type": "Point"}, "id": "417", "properties": {"latitude (degrees_north)": 29.0, "longitude (degrees_east)": -87.0}, "type": "Feature"}, {"bbox": [-88.8499984741211, 28.5, -88.8499984741211, 28.5], "geometry": {"coordinates": [-88.8499984741211, 28.5], "type": "Point"}, "id": "418", "properties": {"latitude (degrees_north)": 28.5, "longitude (degrees_east)": -88.8499984741211}, "type": "Feature"}, {"bbox": [-85.98999786376953, 21.683000564575195, -85.98999786376953, 21.683000564575195], "geometry": {"coordinates": [-85.98999786376953, 21.683000564575195], "type": "Point"}, "id": "419", "properties": {"latitude (degrees_north)": 21.683000564575195, "longitude (degrees_east)": -85.98999786376953}, "type": "Feature"}, {"bbox": [-94.0, 22.0, -94.0, 22.0], "geometry": {"coordinates": [-94.0, 22.0], "type": "Point"}, "id": "420", "properties": {"latitude (degrees_north)": 22.0, "longitude (degrees_east)": -94.0}, "type": "Feature"}, {"bbox": [-87.0, 23.530000686645508, -87.0, 23.530000686645508], "geometry": {"coordinates": [-87.0, 23.530000686645508], "type": "Point"}, "id": "421", "properties": {"latitude (degrees_north)": 23.530000686645508, "longitude (degrees_east)": -87.0}, "type": "Feature"}, {"bbox": [-95.07369995117188, 27.71660041809082, -95.07369995117188, 27.71660041809082], "geometry": {"coordinates": [-95.07369995117188, 27.71660041809082], "type": "Point"}, "id": "422", "properties": {"latitude (degrees_north)": 27.71660041809082, "longitude (degrees_east)": -95.07369995117188}, "type": "Feature"}, {"bbox": [-87.2300033569336, 28.850000381469727, -87.2300033569336, 28.850000381469727], "geometry": {"coordinates": [-87.2300033569336, 28.850000381469727], "type": "Point"}, "id": "423", "properties": {"latitude (degrees_north)": 28.850000381469727, "longitude (degrees_east)": -87.2300033569336}, "type": "Feature"}, {"bbox": [-85.22000122070312, 26.45800018310547, -85.22000122070312, 26.45800018310547], "geometry": {"coordinates": [-85.22000122070312, 26.45800018310547], "type": "Point"}, "id": "424", "properties": {"latitude (degrees_north)": 26.45800018310547, "longitude (degrees_east)": -85.22000122070312}, "type": "Feature"}, {"bbox": [-94.16680145263672, 26.28420066833496, -94.16680145263672, 26.28420066833496], "geometry": {"coordinates": [-94.16680145263672, 26.28420066833496], "type": "Point"}, "id": "425", "properties": {"latitude (degrees_north)": 26.28420066833496, "longitude (degrees_east)": -94.16680145263672}, "type": "Feature"}, {"bbox": [-93.24199676513672, 25.027999877929688, -93.24199676513672, 25.027999877929688], "geometry": {"coordinates": [-93.24199676513672, 25.027999877929688], "type": "Point"}, "id": "426", "properties": {"latitude (degrees_north)": 25.027999877929688, "longitude (degrees_east)": -93.24199676513672}, "type": "Feature"}, {"bbox": [-95.98200225830078, 27.071800231933597, -95.98200225830078, 27.071800231933597], "geometry": {"coordinates": [-95.98200225830078, 27.071800231933597], "type": "Point"}, "id": "427", "properties": {"latitude (degrees_north)": 27.071800231933597, "longitude (degrees_east)": -95.98200225830078}, "type": "Feature"}, {"bbox": [-95.62200164794922, 27.38999938964844, -95.62200164794922, 27.38999938964844], "geometry": {"coordinates": [-95.62200164794922, 27.38999938964844], "type": "Point"}, "id": "428", "properties": {"latitude (degrees_north)": 27.38999938964844, "longitude (degrees_east)": -95.62200164794922}, "type": "Feature"}, {"bbox": [-86.12000274658203, 25.075000762939453, -86.12000274658203, 25.075000762939453], "geometry": {"coordinates": [-86.12000274658203, 25.075000762939453], "type": "Point"}, "id": "429", "properties": {"latitude (degrees_north)": 25.075000762939453, "longitude (degrees_east)": -86.12000274658203}, "type": "Feature"}, {"bbox": [-96.83000183105467, 21.0, -96.83000183105467, 21.0], "geometry": {"coordinates": [-96.83000183105467, 21.0], "type": "Point"}, "id": "430", "properties": {"latitude (degrees_north)": 21.0, "longitude (degrees_east)": -96.83000183105467}, "type": "Feature"}, {"bbox": [-83.72000122070312, 23.420000076293945, -83.72000122070312, 23.420000076293945], "geometry": {"coordinates": [-83.72000122070312, 23.420000076293945], "type": "Point"}, "id": "431", "properties": {"latitude (degrees_north)": 23.420000076293945, "longitude (degrees_east)": -83.72000122070312}, "type": "Feature"}, {"bbox": [-92.86699676513672, 19.493000030517575, -92.86699676513672, 19.493000030517575], "geometry": {"coordinates": [-92.86699676513672, 19.493000030517575], "type": "Point"}, "id": "432", "properties": {"latitude (degrees_north)": 19.493000030517575, "longitude (degrees_east)": -92.86699676513672}, "type": "Feature"}, {"bbox": [-85.55329895019531, 27.66670036315918, -85.55329895019531, 27.66670036315918], "geometry": {"coordinates": [-85.55329895019531, 27.66670036315918], "type": "Point"}, "id": "433", "properties": {"latitude (degrees_north)": 27.66670036315918, "longitude (degrees_east)": -85.55329895019531}, "type": "Feature"}, {"bbox": [-91.99829864501952, 27.74880027770996, -91.99829864501952, 27.74880027770996], "geometry": {"coordinates": [-91.99829864501952, 27.74880027770996], "type": "Point"}, "id": "434", "properties": {"latitude (degrees_north)": 27.74880027770996, "longitude (degrees_east)": -91.99829864501952}, "type": "Feature"}, {"bbox": [-86.40299987792969, 21.81800079345703, -86.40299987792969, 21.81800079345703], "geometry": {"coordinates": [-86.40299987792969, 21.81800079345703], "type": "Point"}, "id": "435", "properties": {"latitude (degrees_north)": 21.81800079345703, "longitude (degrees_east)": -86.40299987792969}, "type": "Feature"}, {"bbox": [-94.9792022705078, 27.239500045776367, -94.9792022705078, 27.239500045776367], "geometry": {"coordinates": [-94.9792022705078, 27.239500045776367], "type": "Point"}, "id": "436", "properties": {"latitude (degrees_north)": 27.239500045776367, "longitude (degrees_east)": -94.9792022705078}, "type": "Feature"}, {"bbox": [-94.95800018310548, 27.604999542236328, -94.95800018310548, 27.604999542236328], "geometry": {"coordinates": [-94.95800018310548, 27.604999542236328], "type": "Point"}, "id": "437", "properties": {"latitude (degrees_north)": 27.604999542236328, "longitude (degrees_east)": -94.95800018310548}, "type": "Feature"}, {"bbox": [-82.5199966430664, 23.670000076293945, -82.5199966430664, 23.670000076293945], "geometry": {"coordinates": [-82.5199966430664, 23.670000076293945], "type": "Point"}, "id": "438", "properties": {"latitude (degrees_north)": 23.670000076293945, "longitude (degrees_east)": -82.5199966430664}, "type": "Feature"}, {"bbox": [-93.00279998779295, 27.75469970703125, -93.00279998779295, 27.75469970703125], "geometry": {"coordinates": [-93.00279998779295, 27.75469970703125], "type": "Point"}, "id": "439", "properties": {"latitude (degrees_north)": 27.75469970703125, "longitude (degrees_east)": -93.00279998779295}, "type": "Feature"}, {"bbox": [-91.4980010986328, 24.49799919128418, -91.4980010986328, 24.49799919128418], "geometry": {"coordinates": [-91.4980010986328, 24.49799919128418], "type": "Point"}, "id": "440", "properties": {"latitude (degrees_north)": 24.49799919128418, "longitude (degrees_east)": -91.4980010986328}, "type": "Feature"}, {"bbox": [-93.00279998779295, 27.75429916381836, -93.00279998779295, 27.75429916381836], "geometry": {"coordinates": [-93.00279998779295, 27.75429916381836], "type": "Point"}, "id": "441", "properties": {"latitude (degrees_north)": 27.75429916381836, "longitude (degrees_east)": -93.00279998779295}, "type": "Feature"}, {"bbox": [-86.93299865722656, 28.163000106811523, -86.93299865722656, 28.163000106811523], "geometry": {"coordinates": [-86.93299865722656, 28.163000106811523], "type": "Point"}, "id": "442", "properties": {"latitude (degrees_north)": 28.163000106811523, "longitude (degrees_east)": -86.93299865722656}, "type": "Feature"}, {"bbox": [-84.37169647216797, 25.5, -84.37169647216797, 25.5], "geometry": {"coordinates": [-84.37169647216797, 25.5], "type": "Point"}, "id": "443", "properties": {"latitude (degrees_north)": 25.5, "longitude (degrees_east)": -84.37169647216797}, "type": "Feature"}, {"bbox": [-87.19450378417969, 28.65999984741211, -87.19450378417969, 28.65999984741211], "geometry": {"coordinates": [-87.19450378417969, 28.65999984741211], "type": "Point"}, "id": "444", "properties": {"latitude (degrees_north)": 28.65999984741211, "longitude (degrees_east)": -87.19450378417969}, "type": "Feature"}, {"bbox": [-94.0, 21.0, -94.0, 21.0], "geometry": {"coordinates": [-94.0, 21.0], "type": "Point"}, "id": "445", "properties": {"latitude (degrees_north)": 21.0, "longitude (degrees_east)": -94.0}, "type": "Feature"}, {"bbox": [-89.93000030517578, 27.799999237060547, -89.93000030517578, 27.799999237060547], "geometry": {"coordinates": [-89.93000030517578, 27.799999237060547], "type": "Point"}, "id": "446", "properties": {"latitude (degrees_north)": 27.799999237060547, "longitude (degrees_east)": -89.93000030517578}, "type": "Feature"}, {"bbox": [-92.25469970703124, 27.612199783325195, -92.25469970703124, 27.612199783325195], "geometry": {"coordinates": [-92.25469970703124, 27.612199783325195], "type": "Point"}, "id": "447", "properties": {"latitude (degrees_north)": 27.612199783325195, "longitude (degrees_east)": -92.25469970703124}, "type": "Feature"}, {"bbox": [-96.61299896240234, 20.920000076293945, -96.61299896240234, 20.920000076293945], "geometry": {"coordinates": [-96.61299896240234, 20.920000076293945], "type": "Point"}, "id": "448", "properties": {"latitude (degrees_north)": 20.920000076293945, "longitude (degrees_east)": -96.61299896240234}, "type": "Feature"}, {"bbox": [-93.76699829101562, 26.24799919128418, -93.76699829101562, 26.24799919128418], "geometry": {"coordinates": [-93.76699829101562, 26.24799919128418], "type": "Point"}, "id": "449", "properties": {"latitude (degrees_north)": 26.24799919128418, "longitude (degrees_east)": -93.76699829101562}, "type": "Feature"}, {"bbox": [-96.14469909667967, 27.229799270629883, -96.14469909667967, 27.229799270629883], "geometry": {"coordinates": [-96.14469909667967, 27.229799270629883], "type": "Point"}, "id": "450", "properties": {"latitude (degrees_north)": 27.229799270629883, "longitude (degrees_east)": -96.14469909667967}, "type": "Feature"}, {"bbox": [-89.42500305175781, 28.04800033569336, -89.42500305175781, 28.04800033569336], "geometry": {"coordinates": [-89.42500305175781, 28.04800033569336], "type": "Point"}, "id": "451", "properties": {"latitude (degrees_north)": 28.04800033569336, "longitude (degrees_east)": -89.42500305175781}, "type": "Feature"}, {"bbox": [-88.77999877929688, 27.3700008392334, -88.77999877929688, 27.3700008392334], "geometry": {"coordinates": [-88.77999877929688, 27.3700008392334], "type": "Point"}, "id": "452", "properties": {"latitude (degrees_north)": 27.3700008392334, "longitude (degrees_east)": -88.77999877929688}, "type": "Feature"}, {"bbox": [-95.05950164794922, 27.809200286865234, -95.05950164794922, 27.809200286865234], "geometry": {"coordinates": [-95.05950164794922, 27.809200286865234], "type": "Point"}, "id": "453", "properties": {"latitude (degrees_north)": 27.809200286865234, "longitude (degrees_east)": -95.05950164794922}, "type": "Feature"}, {"bbox": [-122.5165, 33.5172, -122.5165, 33.5172], "geometry": {"coordinates": [-122.5165, 33.5172], "type": "Point"}, "id": "454", "properties": {"latitude (degrees_north)": 33.5172, "longitude (degrees_east)": -122.5165}, "type": "Feature"}, {"bbox": [-120.8015, 34.3043, -120.8015, 34.3043], "geometry": {"coordinates": [-120.8015, 34.3043], "type": "Point"}, "id": "455", "properties": {"latitude (degrees_north)": 34.3043, "longitude (degrees_east)": -120.8015}, "type": "Feature"}, {"bbox": [-69.5823, 43.9341, -69.5823, 43.9341], "geometry": {"coordinates": [-69.5823, 43.9341], "type": "Point"}, "id": "456", "properties": {"latitude (degrees_north)": 43.9341, "longitude (degrees_east)": -69.5823}, "type": "Feature"}, {"bbox": [-70.5655, 42.5232, -70.5655, 42.5232], "geometry": {"coordinates": [-70.5655, 42.5232], "type": "Point"}, "id": "457", "properties": {"latitude (degrees_north)": 42.5232, "longitude (degrees_east)": -70.5655}, "type": "Feature"}, {"bbox": [-70.56555, 42.524334, -70.56555, 42.524334], "geometry": {"coordinates": [-70.56555, 42.524334], "type": "Point"}, "id": "458", "properties": {"latitude (degrees_north)": 42.524334, "longitude (degrees_east)": -70.56555}, "type": "Feature"}, {"bbox": [-70.56592, 42.523537, -70.56592, 42.523537], "geometry": {"coordinates": [-70.56592, 42.523537], "type": "Point"}, "id": "459", "properties": {"latitude (degrees_north)": 42.523537, "longitude (degrees_east)": -70.56592}, "type": "Feature"}, {"bbox": [-83.31683333333334, 27.265166666666666, -83.31683333333334, 27.265166666666666], "geometry": {"coordinates": [-83.31683333333334, 27.265166666666666], "type": "Point"}, "id": "460", "properties": {"latitude (degrees_north)": 27.265166666666666, "longitude (degrees_east)": -83.31683333333334}, "type": "Feature"}, {"bbox": [-82.84483333333333, 27.458666666666662, -82.84483333333333, 27.458666666666662], "geometry": {"coordinates": [-82.84483333333333, 27.458666666666662], "type": "Point"}, "id": "461", "properties": {"latitude (degrees_north)": 27.458666666666662, "longitude (degrees_east)": -82.84483333333333}, "type": "Feature"}, {"bbox": [-83.03316666666667, 27.381666666666668, -83.03316666666667, 27.381666666666668], "geometry": {"coordinates": [-83.03316666666667, 27.381666666666668], "type": "Point"}, "id": "462", "properties": {"latitude (degrees_north)": 27.381666666666668, "longitude (degrees_east)": -83.03316666666667}, "type": "Feature"}, {"bbox": [-83.48833333333333, 27.619666666666667, -83.48833333333333, 27.619666666666667], "geometry": {"coordinates": [-83.48833333333333, 27.619666666666667], "type": "Point"}, "id": "463", "properties": {"latitude (degrees_north)": 27.619666666666667, "longitude (degrees_east)": -83.48833333333333}, "type": "Feature"}, {"bbox": [-81.4875, 25.3505, -81.4875, 25.3505], "geometry": {"coordinates": [-81.4875, 25.3505], "type": "Point"}, "id": "464", "properties": {"latitude (degrees_north)": 25.3505, "longitude (degrees_east)": -81.4875}, "type": "Feature"}, {"bbox": [-83.50533333333334, 27.193666666666665, -83.50533333333334, 27.193666666666665], "geometry": {"coordinates": [-83.50533333333334, 27.193666666666665], "type": "Point"}, "id": "465", "properties": {"latitude (degrees_north)": 27.193666666666665, "longitude (degrees_east)": -83.50533333333334}, "type": "Feature"}, {"bbox": [-83.4105, 27.22733333333333, -83.4105, 27.22733333333333], "geometry": {"coordinates": [-83.4105, 27.22733333333333], "type": "Point"}, "id": "466", "properties": {"latitude (degrees_north)": 27.22733333333333, "longitude (degrees_east)": -83.4105}, "type": "Feature"}, {"bbox": [-82.21133333333333, 26.18733333333333, -82.21133333333333, 26.18733333333333], "geometry": {"coordinates": [-82.21133333333333, 26.18733333333333], "type": "Point"}, "id": "467", "properties": {"latitude (degrees_north)": 26.18733333333333, "longitude (degrees_east)": -82.21133333333333}, "type": "Feature"}, {"bbox": [-81.65533333333333, 25.352166666666665, -81.65533333333333, 25.352166666666665], "geometry": {"coordinates": [-81.65533333333333, 25.352166666666665], "type": "Point"}, "id": "468", "properties": {"latitude (degrees_north)": 25.352166666666665, "longitude (degrees_east)": -81.65533333333333}, "type": "Feature"}, {"bbox": [-82.04116666666667, 26.343833333333333, -82.04116666666667, 26.343833333333333], "geometry": {"coordinates": [-82.04116666666667, 26.343833333333333], "type": "Point"}, "id": "469", "properties": {"latitude (degrees_north)": 26.343833333333333, "longitude (degrees_east)": -82.04116666666667}, "type": "Feature"}, {"bbox": [-81.3345, 25.3515, -81.3345, 25.3515], "geometry": {"coordinates": [-81.3345, 25.3515], "type": "Point"}, "id": "470", "properties": {"latitude (degrees_north)": 25.3515, "longitude (degrees_east)": -81.3345}, "type": "Feature"}, {"bbox": [-81.95666666666666, 26.42333333333333, -81.95666666666666, 26.42333333333333], "geometry": {"coordinates": [-81.95666666666666, 26.42333333333333], "type": "Point"}, "id": "471", "properties": {"latitude (degrees_north)": 26.42333333333333, "longitude (degrees_east)": -81.95666666666666}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_e896b0bdd13728f539e421a7af0bc5aa_add({"bbox": [-156.893479, 19.493000030517575, -69.5823, 43.9341], "features": [{"bbox": [-76.9071, 34.9691, -76.9071, 34.9691], "geometry": {"coordinates": [-76.9071, 34.9691], "type": "Point"}, "id": "0", "properties": {"latitude (degrees_north)": 34.9691, "longitude (degrees_east)": -76.9071}, "type": "Feature"}, {"bbox": [-70.9344, 43.08, -70.9344, 43.08], "geometry": {"coordinates": [-70.9344, 43.08], "type": "Point"}, "id": "1", "properties": {"latitude (degrees_north)": 43.08, "longitude (degrees_east)": -70.9344}, "type": "Feature"}, {"bbox": [-70.8694, 43.0722, -70.8694, 43.0722], "geometry": {"coordinates": [-70.8694, 43.0722], "type": "Point"}, "id": "2", "properties": {"latitude (degrees_north)": 43.0722, "longitude (degrees_east)": -70.8694}, "type": "Feature"}, {"bbox": [-82.769001, 29.204134, -82.769001, 29.204134], "geometry": {"coordinates": [-82.769001, 29.204134], "type": "Point"}, "id": "3", "properties": {"latitude (degrees_north)": 29.204134, "longitude (degrees_east)": -82.769001}, "type": "Feature"}, {"bbox": [-81.121944, 32.136667, -81.121944, 32.136667], "geometry": {"coordinates": [-81.121944, 32.136667], "type": "Point"}, "id": "4", "properties": {"latitude (degrees_north)": 32.136667, "longitude (degrees_east)": -81.121944}, "type": "Feature"}, {"bbox": [-79.041147, 33.861003, -79.041147, 33.861003], "geometry": {"coordinates": [-79.041147, 33.861003], "type": "Point"}, "id": "5", "properties": {"latitude (degrees_north)": 33.861003, "longitude (degrees_east)": -79.041147}, "type": "Feature"}, {"bbox": [-76.37275, 35.099867, -76.37275, 35.099867], "geometry": {"coordinates": [-76.37275, 35.099867], "type": "Point"}, "id": "6", "properties": {"latitude (degrees_north)": 35.099867, "longitude (degrees_east)": -76.37275}, "type": "Feature"}, {"bbox": [-80.26418, 27.187789, -80.26418, 27.187789], "geometry": {"coordinates": [-80.26418, 27.187789], "type": "Point"}, "id": "7", "properties": {"latitude (degrees_north)": 27.187789, "longitude (degrees_east)": -80.26418}, "type": "Feature"}, {"bbox": [-80.343113, 27.53483, -80.343113, 27.53483], "geometry": {"coordinates": [-80.343113, 27.53483], "type": "Point"}, "id": "8", "properties": {"latitude (degrees_north)": 27.53483, "longitude (degrees_east)": -80.343113}, "type": "Feature"}, {"bbox": [-80.470822, 27.839089, -80.470822, 27.839089], "geometry": {"coordinates": [-80.470822, 27.839089], "type": "Point"}, "id": "9", "properties": {"latitude (degrees_north)": 27.839089, "longitude (degrees_east)": -80.470822}, "type": "Feature"}, {"bbox": [-80.202333, 27.224389, -80.202333, 27.224389], "geometry": {"coordinates": [-80.202333, 27.224389], "type": "Point"}, "id": "10", "properties": {"latitude (degrees_north)": 27.224389, "longitude (degrees_east)": -80.202333}, "type": "Feature"}, {"bbox": [-81.135278, 32.142778, -81.135278, 32.142778], "geometry": {"coordinates": [-81.135278, 32.142778], "type": "Point"}, "id": "11", "properties": {"latitude (degrees_north)": 32.142778, "longitude (degrees_east)": -81.135278}, "type": "Feature"}, {"bbox": [-80.355258, 27.590117, -80.355258, 27.590117], "geometry": {"coordinates": [-80.355258, 27.590117], "type": "Point"}, "id": "12", "properties": {"latitude (degrees_north)": 27.590117, "longitude (degrees_east)": -80.355258}, "type": "Feature"}, {"bbox": [-82.035537, 26.453428, -82.035537, 26.453428], "geometry": {"coordinates": [-82.035537, 26.453428], "type": "Point"}, "id": "13", "properties": {"latitude (degrees_north)": 26.453428, "longitude (degrees_east)": -82.035537}, "type": "Feature"}, {"bbox": [-81.558147, 30.386073, -81.558147, 30.386073], "geometry": {"coordinates": [-81.558147, 30.386073], "type": "Point"}, "id": "14", "properties": {"latitude (degrees_north)": 30.386073, "longitude (degrees_east)": -81.558147}, "type": "Feature"}, {"bbox": [-81.86088, 26.37803, -81.86088, 26.37803], "geometry": {"coordinates": [-81.86088, 26.37803], "type": "Point"}, "id": "15", "properties": {"latitude (degrees_north)": 26.37803, "longitude (degrees_east)": -81.86088}, "type": "Feature"}, {"bbox": [-76.183889, 35.506389, -76.183889, 35.506389], "geometry": {"coordinates": [-76.183889, 35.506389], "type": "Point"}, "id": "16", "properties": {"latitude (degrees_north)": 35.506389, "longitude (degrees_east)": -76.183889}, "type": "Feature"}, {"bbox": [-79.962864, 32.890452, -79.962864, 32.890452], "geometry": {"coordinates": [-79.962864, 32.890452], "type": "Point"}, "id": "17", "properties": {"latitude (degrees_north)": 32.890452, "longitude (degrees_east)": -79.962864}, "type": "Feature"}, {"bbox": [-76.58473, 34.98355, -76.58473, 34.98355], "geometry": {"coordinates": [-76.58473, 34.98355], "type": "Point"}, "id": "18", "properties": {"latitude (degrees_north)": 34.98355, "longitude (degrees_east)": -76.58473}, "type": "Feature"}, {"bbox": [-76.8781, 35.0015, -76.8781, 35.0015], "geometry": {"coordinates": [-76.8781, 35.0015], "type": "Point"}, "id": "19", "properties": {"latitude (degrees_north)": 35.0015, "longitude (degrees_east)": -76.8781}, "type": "Feature"}, {"bbox": [-76.47653, 35.1201, -76.47653, 35.1201], "geometry": {"coordinates": [-76.47653, 35.1201], "type": "Point"}, "id": "20", "properties": {"latitude (degrees_north)": 35.1201, "longitude (degrees_east)": -76.47653}, "type": "Feature"}, {"bbox": [-79.173934, 33.444612, -79.173934, 33.444612], "geometry": {"coordinates": [-79.173934, 33.444612], "type": "Point"}, "id": "21", "properties": {"latitude (degrees_north)": 33.444612, "longitude (degrees_east)": -79.173934}, "type": "Feature"}, {"bbox": [-80.5368, 27.9751, -80.5368, 27.9751], "geometry": {"coordinates": [-80.5368, 27.9751], "type": "Point"}, "id": "22", "properties": {"latitude (degrees_north)": 27.9751, "longitude (degrees_east)": -80.5368}, "type": "Feature"}, {"bbox": [-76.3057, 35.026167, -76.3057, 35.026167], "geometry": {"coordinates": [-76.3057, 35.026167], "type": "Point"}, "id": "23", "properties": {"latitude (degrees_north)": 35.026167, "longitude (degrees_east)": -76.3057}, "type": "Feature"}, {"bbox": [-76.42758, 35.150567, -76.42758, 35.150567], "geometry": {"coordinates": [-76.42758, 35.150567], "type": "Point"}, "id": "24", "properties": {"latitude (degrees_north)": 35.150567, "longitude (degrees_east)": -76.42758}, "type": "Feature"}, {"bbox": [-78.884148, 33.682793, -78.884148, 33.682793], "geometry": {"coordinates": [-78.884148, 33.682793], "type": "Point"}, "id": "25", "properties": {"latitude (degrees_north)": 33.682793, "longitude (degrees_east)": -78.884148}, "type": "Feature"}, {"bbox": [-79.896196, 32.859064, -79.896196, 32.859064], "geometry": {"coordinates": [-79.896196, 32.859064], "type": "Point"}, "id": "26", "properties": {"latitude (degrees_north)": 32.859064, "longitude (degrees_east)": -79.896196}, "type": "Feature"}, {"bbox": [-76.3433, 35.13125, -76.3433, 35.13125], "geometry": {"coordinates": [-76.3433, 35.13125], "type": "Point"}, "id": "27", "properties": {"latitude (degrees_north)": 35.13125, "longitude (degrees_east)": -76.3433}, "type": "Feature"}, {"bbox": [-78.7798, 33.7615, -78.7798, 33.7615], "geometry": {"coordinates": [-78.7798, 33.7615], "type": "Point"}, "id": "28", "properties": {"latitude (degrees_north)": 33.7615, "longitude (degrees_east)": -78.7798}, "type": "Feature"}, {"bbox": [-76.2006, 35.1225, -76.2006, 35.1225], "geometry": {"coordinates": [-76.2006, 35.1225], "type": "Point"}, "id": "29", "properties": {"latitude (degrees_north)": 35.1225, "longitude (degrees_east)": -76.2006}, "type": "Feature"}, {"bbox": [-76.81515, 34.94888, -76.81515, 34.94888], "geometry": {"coordinates": [-76.81515, 34.94888], "type": "Point"}, "id": "30", "properties": {"latitude (degrees_north)": 34.94888, "longitude (degrees_east)": -76.81515}, "type": "Feature"}, {"bbox": [-80.7913, 28.5985, -80.7913, 28.5985], "geometry": {"coordinates": [-80.7913, 28.5985], "type": "Point"}, "id": "31", "properties": {"latitude (degrees_north)": 28.5985, "longitude (degrees_east)": -80.7913}, "type": "Feature"}, {"bbox": [-79.363333, 33.074444, -79.363333, 33.074444], "geometry": {"coordinates": [-79.363333, 33.074444], "type": "Point"}, "id": "32", "properties": {"latitude (degrees_north)": 33.074444, "longitude (degrees_east)": -79.363333}, "type": "Feature"}, {"bbox": [-76.7374, 34.9661, -76.7374, 34.9661], "geometry": {"coordinates": [-76.7374, 34.9661], "type": "Point"}, "id": "33", "properties": {"latitude (degrees_north)": 34.9661, "longitude (degrees_east)": -76.7374}, "type": "Feature"}, {"bbox": [-76.95943, 35.01472, -76.95943, 35.01472], "geometry": {"coordinates": [-76.95943, 35.01472], "type": "Point"}, "id": "34", "properties": {"latitude (degrees_north)": 35.01472, "longitude (degrees_east)": -76.95943}, "type": "Feature"}, {"bbox": [-80.282867, 27.114183, -80.282867, 27.114183], "geometry": {"coordinates": [-80.282867, 27.114183], "type": "Point"}, "id": "35", "properties": {"latitude (degrees_north)": 27.114183, "longitude (degrees_east)": -80.282867}, "type": "Feature"}, {"bbox": [-79.910087, 32.802398, -79.910087, 32.802398], "geometry": {"coordinates": [-79.910087, 32.802398], "type": "Point"}, "id": "36", "properties": {"latitude (degrees_north)": 32.802398, "longitude (degrees_east)": -79.910087}, "type": "Feature"}, {"bbox": [-156.45505, 20.73121, -156.45505, 20.73121], "geometry": {"coordinates": [-156.45505, 20.73121], "type": "Point"}, "id": "37", "properties": {"latitude (degrees_north)": 20.73121, "longitude (degrees_east)": -156.45505}, "type": "Feature"}, {"bbox": [-71.38382, 41.63825, -71.38382, 41.63825], "geometry": {"coordinates": [-71.38382, 41.63825], "type": "Point"}, "id": "38", "properties": {"latitude (degrees_north)": 41.63825, "longitude (degrees_east)": -71.38382}, "type": "Feature"}, {"bbox": [-156.68139, 20.967083, -156.68139, 20.967083], "geometry": {"coordinates": [-156.68139, 20.967083], "type": "Point"}, "id": "39", "properties": {"latitude (degrees_north)": 20.967083, "longitude (degrees_east)": -156.68139}, "type": "Feature"}, {"bbox": [-156.691124, 20.949331, -156.691124, 20.949331], "geometry": {"coordinates": [-156.691124, 20.949331], "type": "Point"}, "id": "40", "properties": {"latitude (degrees_north)": 20.949331, "longitude (degrees_east)": -156.691124}, "type": "Feature"}, {"bbox": [-156.69278, 20.936669, -156.69278, 20.936669], "geometry": {"coordinates": [-156.69278, 20.936669], "type": "Point"}, "id": "41", "properties": {"latitude (degrees_north)": 20.936669, "longitude (degrees_east)": -156.69278}, "type": "Feature"}, {"bbox": [-156.689382, 20.910347, -156.689382, 20.910347], "geometry": {"coordinates": [-156.689382, 20.910347], "type": "Point"}, "id": "42", "properties": {"latitude (degrees_north)": 20.910347, "longitude (degrees_east)": -156.689382}, "type": "Feature"}, {"bbox": [-156.685931, 20.904476, -156.685931, 20.904476], "geometry": {"coordinates": [-156.685931, 20.904476], "type": "Point"}, "id": "43", "properties": {"latitude (degrees_north)": 20.904476, "longitude (degrees_east)": -156.685931}, "type": "Feature"}, {"bbox": [-156.67605, 20.86732, -156.67605, 20.86732], "geometry": {"coordinates": [-156.67605, 20.86732], "type": "Point"}, "id": "44", "properties": {"latitude (degrees_north)": 20.86732, "longitude (degrees_east)": -156.67605}, "type": "Feature"}, {"bbox": [-156.67374, 20.86485, -156.67374, 20.86485], "geometry": {"coordinates": [-156.67374, 20.86485], "type": "Point"}, "id": "45", "properties": {"latitude (degrees_north)": 20.86485, "longitude (degrees_east)": -156.67374}, "type": "Feature"}, {"bbox": [-156.67297, 20.86356, -156.67297, 20.86356], "geometry": {"coordinates": [-156.67297, 20.86356], "type": "Point"}, "id": "46", "properties": {"latitude (degrees_north)": 20.86356, "longitude (degrees_east)": -156.67297}, "type": "Feature"}, {"bbox": [-156.62289, 20.80916, -156.62289, 20.80916], "geometry": {"coordinates": [-156.62289, 20.80916], "type": "Point"}, "id": "47", "properties": {"latitude (degrees_north)": 20.80916, "longitude (degrees_east)": -156.62289}, "type": "Feature"}, {"bbox": [-156.61369, 20.80986, -156.61369, 20.80986], "geometry": {"coordinates": [-156.61369, 20.80986], "type": "Point"}, "id": "48", "properties": {"latitude (degrees_north)": 20.80986, "longitude (degrees_east)": -156.61369}, "type": "Feature"}, {"bbox": [-156.60661, 20.80915, -156.60661, 20.80915], "geometry": {"coordinates": [-156.60661, 20.80915], "type": "Point"}, "id": "49", "properties": {"latitude (degrees_north)": 20.80915, "longitude (degrees_east)": -156.60661}, "type": "Feature"}, {"bbox": [-156.58142, 20.79448, -156.58142, 20.79448], "geometry": {"coordinates": [-156.58142, 20.79448], "type": "Point"}, "id": "50", "properties": {"latitude (degrees_north)": 20.79448, "longitude (degrees_east)": -156.58142}, "type": "Feature"}, {"bbox": [-156.575211, 20.793809, -156.575211, 20.793809], "geometry": {"coordinates": [-156.575211, 20.793809], "type": "Point"}, "id": "51", "properties": {"latitude (degrees_north)": 20.793809, "longitude (degrees_east)": -156.575211}, "type": "Feature"}, {"bbox": [-156.567326, 20.792747, -156.567326, 20.792747], "geometry": {"coordinates": [-156.567326, 20.792747], "type": "Point"}, "id": "52", "properties": {"latitude (degrees_north)": 20.792747, "longitude (degrees_east)": -156.567326}, "type": "Feature"}, {"bbox": [-156.653035, 20.84236, -156.653035, 20.84236], "geometry": {"coordinates": [-156.653035, 20.84236], "type": "Point"}, "id": "53", "properties": {"latitude (degrees_north)": 20.84236, "longitude (degrees_east)": -156.653035}, "type": "Feature"}, {"bbox": [-156.619697, 20.808444, -156.619697, 20.808444], "geometry": {"coordinates": [-156.619697, 20.808444], "type": "Point"}, "id": "54", "properties": {"latitude (degrees_north)": 20.808444, "longitude (degrees_east)": -156.619697}, "type": "Feature"}, {"bbox": [-156.669442, 20.859233, -156.669442, 20.859233], "geometry": {"coordinates": [-156.669442, 20.859233], "type": "Point"}, "id": "55", "properties": {"latitude (degrees_north)": 20.859233, "longitude (degrees_east)": -156.669442}, "type": "Feature"}, {"bbox": [-156.667417, 20.994222, -156.667417, 20.994222], "geometry": {"coordinates": [-156.667417, 20.994222], "type": "Point"}, "id": "56", "properties": {"latitude (degrees_north)": 20.994222, "longitude (degrees_east)": -156.667417}, "type": "Feature"}, {"bbox": [-156.63834, 21.013058, -156.63834, 21.013058], "geometry": {"coordinates": [-156.63834, 21.013058], "type": "Point"}, "id": "57", "properties": {"latitude (degrees_north)": 21.013058, "longitude (degrees_east)": -156.63834}, "type": "Feature"}, {"bbox": [-156.64227, 21.011352, -156.64227, 21.011352], "geometry": {"coordinates": [-156.64227, 21.011352], "type": "Point"}, "id": "58", "properties": {"latitude (degrees_north)": 21.011352, "longitude (degrees_east)": -156.64227}, "type": "Feature"}, {"bbox": [-156.65084, 21.005, -156.65084, 21.005], "geometry": {"coordinates": [-156.65084, 21.005], "type": "Point"}, "id": "59", "properties": {"latitude (degrees_north)": 21.005, "longitude (degrees_east)": -156.65084}, "type": "Feature"}, {"bbox": [-156.65894, 21.004056, -156.65894, 21.004056], "geometry": {"coordinates": [-156.65894, 21.004056], "type": "Point"}, "id": "60", "properties": {"latitude (degrees_north)": 21.004056, "longitude (degrees_east)": -156.65894}, "type": "Feature"}, {"bbox": [-156.666746, 20.998924, -156.666746, 20.998924], "geometry": {"coordinates": [-156.666746, 20.998924], "type": "Point"}, "id": "61", "properties": {"latitude (degrees_north)": 20.998924, "longitude (degrees_east)": -156.666746}, "type": "Feature"}, {"bbox": [-156.673398, 20.982074, -156.673398, 20.982074], "geometry": {"coordinates": [-156.673398, 20.982074], "type": "Point"}, "id": "62", "properties": {"latitude (degrees_north)": 20.982074, "longitude (degrees_east)": -156.673398}, "type": "Feature"}, {"bbox": [-156.678, 20.976561, -156.678, 20.976561], "geometry": {"coordinates": [-156.678, 20.976561], "type": "Point"}, "id": "63", "properties": {"latitude (degrees_north)": 20.976561, "longitude (degrees_east)": -156.678}, "type": "Feature"}, {"bbox": [-156.459602, 20.755056, -156.459602, 20.755056], "geometry": {"coordinates": [-156.459602, 20.755056], "type": "Point"}, "id": "64", "properties": {"latitude (degrees_north)": 20.755056, "longitude (degrees_east)": -156.459602}, "type": "Feature"}, {"bbox": [-156.457881, 20.747334, -156.457881, 20.747334], "geometry": {"coordinates": [-156.457881, 20.747334], "type": "Point"}, "id": "65", "properties": {"latitude (degrees_north)": 20.747334, "longitude (degrees_east)": -156.457881}, "type": "Feature"}, {"bbox": [-156.45372, 20.730973, -156.45372, 20.730973], "geometry": {"coordinates": [-156.45372, 20.730973], "type": "Point"}, "id": "66", "properties": {"latitude (degrees_north)": 20.730973, "longitude (degrees_east)": -156.45372}, "type": "Feature"}, {"bbox": [-156.450077, 20.727434, -156.450077, 20.727434], "geometry": {"coordinates": [-156.450077, 20.727434], "type": "Point"}, "id": "67", "properties": {"latitude (degrees_north)": 20.727434, "longitude (degrees_east)": -156.450077}, "type": "Feature"}, {"bbox": [-156.448183, 20.721985, -156.448183, 20.721985], "geometry": {"coordinates": [-156.448183, 20.721985], "type": "Point"}, "id": "68", "properties": {"latitude (degrees_north)": 20.721985, "longitude (degrees_east)": -156.448183}, "type": "Feature"}, {"bbox": [-156.446596, 20.712908, -156.446596, 20.712908], "geometry": {"coordinates": [-156.446596, 20.712908], "type": "Point"}, "id": "69", "properties": {"latitude (degrees_north)": 20.712908, "longitude (degrees_east)": -156.446596}, "type": "Feature"}, {"bbox": [-156.441174, 20.653913, -156.441174, 20.653913], "geometry": {"coordinates": [-156.441174, 20.653913], "type": "Point"}, "id": "70", "properties": {"latitude (degrees_north)": 20.653913, "longitude (degrees_east)": -156.441174}, "type": "Feature"}, {"bbox": [-156.443859, 20.645598, -156.443859, 20.645598], "geometry": {"coordinates": [-156.443859, 20.645598], "type": "Point"}, "id": "71", "properties": {"latitude (degrees_north)": 20.645598, "longitude (degrees_east)": -156.443859}, "type": "Feature"}, {"bbox": [-156.447406, 20.639866, -156.447406, 20.639866], "geometry": {"coordinates": [-156.447406, 20.639866], "type": "Point"}, "id": "72", "properties": {"latitude (degrees_north)": 20.639866, "longitude (degrees_east)": -156.447406}, "type": "Feature"}, {"bbox": [-156.446183, 20.63061, -156.446183, 20.63061], "geometry": {"coordinates": [-156.446183, 20.63061], "type": "Point"}, "id": "73", "properties": {"latitude (degrees_north)": 20.63061, "longitude (degrees_east)": -156.446183}, "type": "Feature"}, {"bbox": [-156.437572, 20.618366, -156.437572, 20.618366], "geometry": {"coordinates": [-156.437572, 20.618366], "type": "Point"}, "id": "74", "properties": {"latitude (degrees_north)": 20.618366, "longitude (degrees_east)": -156.437572}, "type": "Feature"}, {"bbox": [-156.436853, 20.6138, -156.436853, 20.6138], "geometry": {"coordinates": [-156.436853, 20.6138], "type": "Point"}, "id": "75", "properties": {"latitude (degrees_north)": 20.6138, "longitude (degrees_east)": -156.436853}, "type": "Feature"}, {"bbox": [-156.503198, 20.796414, -156.503198, 20.796414], "geometry": {"coordinates": [-156.503198, 20.796414], "type": "Point"}, "id": "76", "properties": {"latitude (degrees_north)": 20.796414, "longitude (degrees_east)": -156.503198}, "type": "Feature"}, {"bbox": [-156.485587, 20.794936, -156.485587, 20.794936], "geometry": {"coordinates": [-156.485587, 20.794936], "type": "Point"}, "id": "77", "properties": {"latitude (degrees_north)": 20.794936, "longitude (degrees_east)": -156.485587}, "type": "Feature"}, {"bbox": [-156.466463, 20.784204, -156.466463, 20.784204], "geometry": {"coordinates": [-156.466463, 20.784204], "type": "Point"}, "id": "78", "properties": {"latitude (degrees_north)": 20.784204, "longitude (degrees_east)": -156.466463}, "type": "Feature"}, {"bbox": [-156.463176, 20.781403, -156.463176, 20.781403], "geometry": {"coordinates": [-156.463176, 20.781403], "type": "Point"}, "id": "79", "properties": {"latitude (degrees_north)": 20.781403, "longitude (degrees_east)": -156.463176}, "type": "Feature"}, {"bbox": [-156.460776, 20.774894, -156.460776, 20.774894], "geometry": {"coordinates": [-156.460776, 20.774894], "type": "Point"}, "id": "80", "properties": {"latitude (degrees_north)": 20.774894, "longitude (degrees_east)": -156.460776}, "type": "Feature"}, {"bbox": [-156.459344, 20.765132, -156.459344, 20.765132], "geometry": {"coordinates": [-156.459344, 20.765132], "type": "Point"}, "id": "81", "properties": {"latitude (degrees_north)": 20.765132, "longitude (degrees_east)": -156.459344}, "type": "Feature"}, {"bbox": [-156.445921, 20.702214, -156.445921, 20.702214], "geometry": {"coordinates": [-156.445921, 20.702214], "type": "Point"}, "id": "82", "properties": {"latitude (degrees_north)": 20.702214, "longitude (degrees_east)": -156.445921}, "type": "Feature"}, {"bbox": [-156.444632, 20.695939, -156.444632, 20.695939], "geometry": {"coordinates": [-156.444632, 20.695939], "type": "Point"}, "id": "83", "properties": {"latitude (degrees_north)": 20.695939, "longitude (degrees_east)": -156.444632}, "type": "Feature"}, {"bbox": [-156.444201, 20.69112, -156.444201, 20.69112], "geometry": {"coordinates": [-156.444201, 20.69112], "type": "Point"}, "id": "84", "properties": {"latitude (degrees_north)": 20.69112, "longitude (degrees_east)": -156.444201}, "type": "Feature"}, {"bbox": [-156.443524, 20.68156, -156.443524, 20.68156], "geometry": {"coordinates": [-156.443524, 20.68156], "type": "Point"}, "id": "85", "properties": {"latitude (degrees_north)": 20.68156, "longitude (degrees_east)": -156.443524}, "type": "Feature"}, {"bbox": [-156.442907, 20.669565, -156.442907, 20.669565], "geometry": {"coordinates": [-156.442907, 20.669565], "type": "Point"}, "id": "86", "properties": {"latitude (degrees_north)": 20.669565, "longitude (degrees_east)": -156.442907}, "type": "Feature"}, {"bbox": [-156.441968, 20.66339, -156.441968, 20.66339], "geometry": {"coordinates": [-156.441968, 20.66339], "type": "Point"}, "id": "87", "properties": {"latitude (degrees_north)": 20.66339, "longitude (degrees_east)": -156.441968}, "type": "Feature"}, {"bbox": [-156.510825, 20.790305, -156.510825, 20.790305], "geometry": {"coordinates": [-156.510825, 20.790305], "type": "Point"}, "id": "88", "properties": {"latitude (degrees_north)": 20.790305, "longitude (degrees_east)": -156.510825}, "type": "Feature"}, {"bbox": [-156.506735, 20.794917, -156.506735, 20.794917], "geometry": {"coordinates": [-156.506735, 20.794917], "type": "Point"}, "id": "89", "properties": {"latitude (degrees_north)": 20.794917, "longitude (degrees_east)": -156.506735}, "type": "Feature"}, {"bbox": [-156.692439, 20.941269, -156.692439, 20.941269], "geometry": {"coordinates": [-156.692439, 20.941269], "type": "Point"}, "id": "90", "properties": {"latitude (degrees_north)": 20.941269, "longitude (degrees_east)": -156.692439}, "type": "Feature"}, {"bbox": [-156.893479, 20.738818, -156.893479, 20.738818], "geometry": {"coordinates": [-156.893479, 20.738818], "type": "Point"}, "id": "91", "properties": {"latitude (degrees_north)": 20.738818, "longitude (degrees_east)": -156.893479}, "type": "Feature"}, {"bbox": [-156.887956, 20.741563, -156.887956, 20.741563], "geometry": {"coordinates": [-156.887956, 20.741563], "type": "Point"}, "id": "92", "properties": {"latitude (degrees_north)": 20.741563, "longitude (degrees_east)": -156.887956}, "type": "Feature"}, {"bbox": [-156.685048, 20.887449, -156.685048, 20.887449], "geometry": {"coordinates": [-156.685048, 20.887449], "type": "Point"}, "id": "93", "properties": {"latitude (degrees_north)": 20.887449, "longitude (degrees_east)": -156.685048}, "type": "Feature"}, {"bbox": [-156.686429, 20.885373, -156.686429, 20.885373], "geometry": {"coordinates": [-156.686429, 20.885373], "type": "Point"}, "id": "94", "properties": {"latitude (degrees_north)": 20.885373, "longitude (degrees_east)": -156.686429}, "type": "Feature"}, {"bbox": [-156.681359, 20.876911, -156.681359, 20.876911], "geometry": {"coordinates": [-156.681359, 20.876911], "type": "Point"}, "id": "95", "properties": {"latitude (degrees_north)": 20.876911, "longitude (degrees_east)": -156.681359}, "type": "Feature"}, {"bbox": [-156.678624, 20.871933, -156.678624, 20.871933], "geometry": {"coordinates": [-156.678624, 20.871933], "type": "Point"}, "id": "96", "properties": {"latitude (degrees_north)": 20.871933, "longitude (degrees_east)": -156.678624}, "type": "Feature"}, {"bbox": [-87.3499984741211, 27.31999969482422, -87.3499984741211, 27.31999969482422], "geometry": {"coordinates": [-87.3499984741211, 27.31999969482422], "type": "Point"}, "id": "97", "properties": {"latitude (degrees_north)": 27.31999969482422, "longitude (degrees_east)": -87.3499984741211}, "type": "Feature"}, {"bbox": [-87.35070037841797, 29.206600189208984, -87.35070037841797, 29.206600189208984], "geometry": {"coordinates": [-87.35070037841797, 29.206600189208984], "type": "Point"}, "id": "98", "properties": {"latitude (degrees_north)": 29.206600189208984, "longitude (degrees_east)": -87.35070037841797}, "type": "Feature"}, {"bbox": [-85.01699829101562, 25.649999618530277, -85.01699829101562, 25.649999618530277], "geometry": {"coordinates": [-85.01699829101562, 25.649999618530277], "type": "Point"}, "id": "99", "properties": {"latitude (degrees_north)": 25.649999618530277, "longitude (degrees_east)": -85.01699829101562}, "type": "Feature"}, {"bbox": [-87.2300033569336, 25.24799919128418, -87.2300033569336, 25.24799919128418], "geometry": {"coordinates": [-87.2300033569336, 25.24799919128418], "type": "Point"}, "id": "100", "properties": {"latitude (degrees_north)": 25.24799919128418, "longitude (degrees_east)": -87.2300033569336}, "type": "Feature"}, {"bbox": [-93.76499938964844, 26.25, -93.76499938964844, 26.25], "geometry": {"coordinates": [-93.76499938964844, 26.25], "type": "Point"}, "id": "101", "properties": {"latitude (degrees_north)": 26.25, "longitude (degrees_east)": -93.76499938964844}, "type": "Feature"}, {"bbox": [-86.0, 21.5, -86.0, 21.5], "geometry": {"coordinates": [-86.0, 21.5], "type": "Point"}, "id": "102", "properties": {"latitude (degrees_north)": 21.5, "longitude (degrees_east)": -86.0}, "type": "Feature"}, {"bbox": [-92.99829864501952, 22.0, -92.99829864501952, 22.0], "geometry": {"coordinates": [-92.99829864501952, 22.0], "type": "Point"}, "id": "103", "properties": {"latitude (degrees_north)": 22.0, "longitude (degrees_east)": -92.99829864501952}, "type": "Feature"}, {"bbox": [-96.3000030517578, 23.066999435424805, -96.3000030517578, 23.066999435424805], "geometry": {"coordinates": [-96.3000030517578, 23.066999435424805], "type": "Point"}, "id": "104", "properties": {"latitude (degrees_north)": 23.066999435424805, "longitude (degrees_east)": -96.3000030517578}, "type": "Feature"}, {"bbox": [-85.55000305175781, 26.57999992370605, -85.55000305175781, 26.57999992370605], "geometry": {"coordinates": [-85.55000305175781, 26.57999992370605], "type": "Point"}, "id": "105", "properties": {"latitude (degrees_north)": 26.57999992370605, "longitude (degrees_east)": -85.55000305175781}, "type": "Feature"}, {"bbox": [-87.04299926757812, 29.73200035095215, -87.04299926757812, 29.73200035095215], "geometry": {"coordinates": [-87.04299926757812, 29.73200035095215], "type": "Point"}, "id": "106", "properties": {"latitude (degrees_north)": 29.73200035095215, "longitude (degrees_east)": -87.04299926757812}, "type": "Feature"}, {"bbox": [-93.4800033569336, 25.56999969482422, -93.4800033569336, 25.56999969482422], "geometry": {"coordinates": [-93.4800033569336, 25.56999969482422], "type": "Point"}, "id": "107", "properties": {"latitude (degrees_north)": 25.56999969482422, "longitude (degrees_east)": -93.4800033569336}, "type": "Feature"}, {"bbox": [-95.03230285644533, 27.76370048522949, -95.03230285644533, 27.76370048522949], "geometry": {"coordinates": [-95.03230285644533, 27.76370048522949], "type": "Point"}, "id": "108", "properties": {"latitude (degrees_north)": 27.76370048522949, "longitude (degrees_east)": -95.03230285644533}, "type": "Feature"}, {"bbox": [-95.05979919433594, 27.809200286865234, -95.05979919433594, 27.809200286865234], "geometry": {"coordinates": [-95.05979919433594, 27.809200286865234], "type": "Point"}, "id": "109", "properties": {"latitude (degrees_north)": 27.809200286865234, "longitude (degrees_east)": -95.05979919433594}, "type": "Feature"}, {"bbox": [-84.83000183105469, 22.246999740600582, -84.83000183105469, 22.246999740600582], "geometry": {"coordinates": [-84.83000183105469, 22.246999740600582], "type": "Point"}, "id": "110", "properties": {"latitude (degrees_north)": 22.246999740600582, "longitude (degrees_east)": -84.83000183105469}, "type": "Feature"}, {"bbox": [-85.00330352783203, 24.96330070495605, -85.00330352783203, 24.96330070495605], "geometry": {"coordinates": [-85.00330352783203, 24.96330070495605], "type": "Point"}, "id": "111", "properties": {"latitude (degrees_north)": 24.96330070495605, "longitude (degrees_east)": -85.00330352783203}, "type": "Feature"}, {"bbox": [-95.04550170898438, 27.794700622558597, -95.04550170898438, 27.794700622558597], "geometry": {"coordinates": [-95.04550170898438, 27.794700622558597], "type": "Point"}, "id": "112", "properties": {"latitude (degrees_north)": 27.794700622558597, "longitude (degrees_east)": -95.04550170898438}, "type": "Feature"}, {"bbox": [-95.09200286865234, 26.020000457763672, -95.09200286865234, 26.020000457763672], "geometry": {"coordinates": [-95.09200286865234, 26.020000457763672], "type": "Point"}, "id": "113", "properties": {"latitude (degrees_north)": 26.020000457763672, "longitude (degrees_east)": -95.09200286865234}, "type": "Feature"}, {"bbox": [-88.38300323486328, 28.25200080871582, -88.38300323486328, 28.25200080871582], "geometry": {"coordinates": [-88.38300323486328, 28.25200080871582], "type": "Point"}, "id": "114", "properties": {"latitude (degrees_north)": 28.25200080871582, "longitude (degrees_east)": -88.38300323486328}, "type": "Feature"}, {"bbox": [-86.99669647216797, 28.5, -86.99669647216797, 28.5], "geometry": {"coordinates": [-86.99669647216797, 28.5], "type": "Point"}, "id": "115", "properties": {"latitude (degrees_north)": 28.5, "longitude (degrees_east)": -86.99669647216797}, "type": "Feature"}, {"bbox": [-92.00029754638672, 27.79199981689453, -92.00029754638672, 27.79199981689453], "geometry": {"coordinates": [-92.00029754638672, 27.79199981689453], "type": "Point"}, "id": "116", "properties": {"latitude (degrees_north)": 27.79199981689453, "longitude (degrees_east)": -92.00029754638672}, "type": "Feature"}, {"bbox": [-90.83370208740234, 26.74970054626465, -90.83370208740234, 26.74970054626465], "geometry": {"coordinates": [-90.83370208740234, 26.74970054626465], "type": "Point"}, "id": "117", "properties": {"latitude (degrees_north)": 26.74970054626465, "longitude (degrees_east)": -90.83370208740234}, "type": "Feature"}, {"bbox": [-86.50830078125, 28.78610038757324, -86.50830078125, 28.78610038757324], "geometry": {"coordinates": [-86.50830078125, 28.78610038757324], "type": "Point"}, "id": "118", "properties": {"latitude (degrees_north)": 28.78610038757324, "longitude (degrees_east)": -86.50830078125}, "type": "Feature"}, {"bbox": [-95.0199966430664, 21.3700008392334, -95.0199966430664, 21.3700008392334], "geometry": {"coordinates": [-95.0199966430664, 21.3700008392334], "type": "Point"}, "id": "119", "properties": {"latitude (degrees_north)": 21.3700008392334, "longitude (degrees_east)": -95.0199966430664}, "type": "Feature"}, {"bbox": [-92.5199966430664, 25.770000457763672, -92.5199966430664, 25.770000457763672], "geometry": {"coordinates": [-92.5199966430664, 25.770000457763672], "type": "Point"}, "id": "120", "properties": {"latitude (degrees_north)": 25.770000457763672, "longitude (degrees_east)": -92.5199966430664}, "type": "Feature"}, {"bbox": [-91.7396011352539, 27.756999969482425, -91.7396011352539, 27.756999969482425], "geometry": {"coordinates": [-91.7396011352539, 27.756999969482425], "type": "Point"}, "id": "121", "properties": {"latitude (degrees_north)": 27.756999969482425, "longitude (degrees_east)": -91.7396011352539}, "type": "Feature"}, {"bbox": [-84.13300323486328, 23.482999801635746, -84.13300323486328, 23.482999801635746], "geometry": {"coordinates": [-84.13300323486328, 23.482999801635746], "type": "Point"}, "id": "122", "properties": {"latitude (degrees_north)": 23.482999801635746, "longitude (degrees_east)": -84.13300323486328}, "type": "Feature"}, {"bbox": [-85.0199966430664, 25.0, -85.0199966430664, 25.0], "geometry": {"coordinates": [-85.0199966430664, 25.0], "type": "Point"}, "id": "123", "properties": {"latitude (degrees_north)": 25.0, "longitude (degrees_east)": -85.0199966430664}, "type": "Feature"}, {"bbox": [-94.22450256347656, 27.660499572753903, -94.22450256347656, 27.660499572753903], "geometry": {"coordinates": [-94.22450256347656, 27.660499572753903], "type": "Point"}, "id": "124", "properties": {"latitude (degrees_north)": 27.660499572753903, "longitude (degrees_east)": -94.22450256347656}, "type": "Feature"}, {"bbox": [-88.5031967163086, 27.832500457763672, -88.5031967163086, 27.832500457763672], "geometry": {"coordinates": [-88.5031967163086, 27.832500457763672], "type": "Point"}, "id": "125", "properties": {"latitude (degrees_north)": 27.832500457763672, "longitude (degrees_east)": -88.5031967163086}, "type": "Feature"}, {"bbox": [-87.6500015258789, 26.867000579833984, -87.6500015258789, 26.867000579833984], "geometry": {"coordinates": [-87.6500015258789, 26.867000579833984], "type": "Point"}, "id": "126", "properties": {"latitude (degrees_north)": 26.867000579833984, "longitude (degrees_east)": -87.6500015258789}, "type": "Feature"}, {"bbox": [-81.77999877929688, 24.200000762939453, -81.77999877929688, 24.200000762939453], "geometry": {"coordinates": [-81.77999877929688, 24.200000762939453], "type": "Point"}, "id": "127", "properties": {"latitude (degrees_north)": 24.200000762939453, "longitude (degrees_east)": -81.77999877929688}, "type": "Feature"}, {"bbox": [-89.98179626464844, 28.104700088500977, -89.98179626464844, 28.104700088500977], "geometry": {"coordinates": [-89.98179626464844, 28.104700088500977], "type": "Point"}, "id": "128", "properties": {"latitude (degrees_north)": 28.104700088500977, "longitude (degrees_east)": -89.98179626464844}, "type": "Feature"}, {"bbox": [-88.99720001220703, 28.584699630737305, -88.99720001220703, 28.584699630737305], "geometry": {"coordinates": [-88.99720001220703, 28.584699630737305], "type": "Point"}, "id": "129", "properties": {"latitude (degrees_north)": 28.584699630737305, "longitude (degrees_east)": -88.99720001220703}, "type": "Feature"}, {"bbox": [-85.58300018310547, 21.66699981689453, -85.58300018310547, 21.66699981689453], "geometry": {"coordinates": [-85.58300018310547, 21.66699981689453], "type": "Point"}, "id": "130", "properties": {"latitude (degrees_north)": 21.66699981689453, "longitude (degrees_east)": -85.58300018310547}, "type": "Feature"}, {"bbox": [-95.71119689941406, 27.65069961547852, -95.71119689941406, 27.65069961547852], "geometry": {"coordinates": [-95.71119689941406, 27.65069961547852], "type": "Point"}, "id": "131", "properties": {"latitude (degrees_north)": 27.65069961547852, "longitude (degrees_east)": -95.71119689941406}, "type": "Feature"}, {"bbox": [-85.72489929199219, 28.210899353027344, -85.72489929199219, 28.210899353027344], "geometry": {"coordinates": [-85.72489929199219, 28.210899353027344], "type": "Point"}, "id": "132", "properties": {"latitude (degrees_north)": 28.210899353027344, "longitude (degrees_east)": -85.72489929199219}, "type": "Feature"}, {"bbox": [-87.0999984741211, 29.16670036315918, -87.0999984741211, 29.16670036315918], "geometry": {"coordinates": [-87.0999984741211, 29.16670036315918], "type": "Point"}, "id": "133", "properties": {"latitude (degrees_north)": 29.16670036315918, "longitude (degrees_east)": -87.0999984741211}, "type": "Feature"}, {"bbox": [-90.10330200195312, 24.75169944763184, -90.10330200195312, 24.75169944763184], "geometry": {"coordinates": [-90.10330200195312, 24.75169944763184], "type": "Point"}, "id": "134", "properties": {"latitude (degrees_north)": 24.75169944763184, "longitude (degrees_east)": -90.10330200195312}, "type": "Feature"}, {"bbox": [-85.63300323486328, 21.600000381469727, -85.63300323486328, 21.600000381469727], "geometry": {"coordinates": [-85.63300323486328, 21.600000381469727], "type": "Point"}, "id": "135", "properties": {"latitude (degrees_north)": 21.600000381469727, "longitude (degrees_east)": -85.63300323486328}, "type": "Feature"}, {"bbox": [-96.53299713134766, 22.299999237060547, -96.53299713134766, 22.299999237060547], "geometry": {"coordinates": [-96.53299713134766, 22.299999237060547], "type": "Point"}, "id": "136", "properties": {"latitude (degrees_north)": 22.299999237060547, "longitude (degrees_east)": -96.53299713134766}, "type": "Feature"}, {"bbox": [-94.74829864501952, 26.32830047607422, -94.74829864501952, 26.32830047607422], "geometry": {"coordinates": [-94.74829864501952, 26.32830047607422], "type": "Point"}, "id": "137", "properties": {"latitude (degrees_north)": 26.32830047607422, "longitude (degrees_east)": -94.74829864501952}, "type": "Feature"}, {"bbox": [-94.74829864501952, 25.663299560546875, -94.74829864501952, 25.663299560546875], "geometry": {"coordinates": [-94.74829864501952, 25.663299560546875], "type": "Point"}, "id": "138", "properties": {"latitude (degrees_north)": 25.663299560546875, "longitude (degrees_east)": -94.74829864501952}, "type": "Feature"}, {"bbox": [-92.1677017211914, 26.283700942993164, -92.1677017211914, 26.283700942993164], "geometry": {"coordinates": [-92.1677017211914, 26.283700942993164], "type": "Point"}, "id": "139", "properties": {"latitude (degrees_north)": 26.283700942993164, "longitude (degrees_east)": -92.1677017211914}, "type": "Feature"}, {"bbox": [-95.01119995117188, 27.71699905395508, -95.01119995117188, 27.71699905395508], "geometry": {"coordinates": [-95.01119995117188, 27.71699905395508], "type": "Point"}, "id": "140", "properties": {"latitude (degrees_north)": 27.71699905395508, "longitude (degrees_east)": -95.01119995117188}, "type": "Feature"}, {"bbox": [-93.23500061035156, 23.40699958801269, -93.23500061035156, 23.40699958801269], "geometry": {"coordinates": [-93.23500061035156, 23.40699958801269], "type": "Point"}, "id": "141", "properties": {"latitude (degrees_north)": 23.40699958801269, "longitude (degrees_east)": -93.23500061035156}, "type": "Feature"}, {"bbox": [-86.83000183105469, 24.729999542236328, -86.83000183105469, 24.729999542236328], "geometry": {"coordinates": [-86.83000183105469, 24.729999542236328], "type": "Point"}, "id": "142", "properties": {"latitude (degrees_north)": 24.729999542236328, "longitude (degrees_east)": -86.83000183105469}, "type": "Feature"}, {"bbox": [-93.12999725341795, 26.5, -93.12999725341795, 26.5], "geometry": {"coordinates": [-93.12999725341795, 26.5], "type": "Point"}, "id": "143", "properties": {"latitude (degrees_north)": 26.5, "longitude (degrees_east)": -93.12999725341795}, "type": "Feature"}, {"bbox": [-84.0, 24.575000762939453, -84.0, 24.575000762939453], "geometry": {"coordinates": [-84.0, 24.575000762939453], "type": "Point"}, "id": "144", "properties": {"latitude (degrees_north)": 24.575000762939453, "longitude (degrees_east)": -84.0}, "type": "Feature"}, {"bbox": [-88.83319854736328, 27.76580047607422, -88.83319854736328, 27.76580047607422], "geometry": {"coordinates": [-88.83319854736328, 27.76580047607422], "type": "Point"}, "id": "145", "properties": {"latitude (degrees_north)": 27.76580047607422, "longitude (degrees_east)": -88.83319854736328}, "type": "Feature"}, {"bbox": [-84.83830261230469, 26.07699966430664, -84.83830261230469, 26.07699966430664], "geometry": {"coordinates": [-84.83830261230469, 26.07699966430664], "type": "Point"}, "id": "146", "properties": {"latitude (degrees_north)": 26.07699966430664, "longitude (degrees_east)": -84.83830261230469}, "type": "Feature"}, {"bbox": [-91.54499816894533, 27.943300247192383, -91.54499816894533, 27.943300247192383], "geometry": {"coordinates": [-91.54499816894533, 27.943300247192383], "type": "Point"}, "id": "147", "properties": {"latitude (degrees_north)": 27.943300247192383, "longitude (degrees_east)": -91.54499816894533}, "type": "Feature"}, {"bbox": [-90.052001953125, 23.392000198364254, -90.052001953125, 23.392000198364254], "geometry": {"coordinates": [-90.052001953125, 23.392000198364254], "type": "Point"}, "id": "148", "properties": {"latitude (degrees_north)": 23.392000198364254, "longitude (degrees_east)": -90.052001953125}, "type": "Feature"}, {"bbox": [-96.3322982788086, 26.530500411987305, -96.3322982788086, 26.530500411987305], "geometry": {"coordinates": [-96.3322982788086, 26.530500411987305], "type": "Point"}, "id": "149", "properties": {"latitude (degrees_north)": 26.530500411987305, "longitude (degrees_east)": -96.3322982788086}, "type": "Feature"}, {"bbox": [-94.39700317382812, 21.996999740600582, -94.39700317382812, 21.996999740600582], "geometry": {"coordinates": [-94.39700317382812, 21.996999740600582], "type": "Point"}, "id": "150", "properties": {"latitude (degrees_north)": 21.996999740600582, "longitude (degrees_east)": -94.39700317382812}, "type": "Feature"}, {"bbox": [-90.50250244140624, 27.966699600219727, -90.50250244140624, 27.966699600219727], "geometry": {"coordinates": [-90.50250244140624, 27.966699600219727], "type": "Point"}, "id": "151", "properties": {"latitude (degrees_north)": 27.966699600219727, "longitude (degrees_east)": -90.50250244140624}, "type": "Feature"}, {"bbox": [-86.44999694824219, 27.450000762939453, -86.44999694824219, 27.450000762939453], "geometry": {"coordinates": [-86.44999694824219, 27.450000762939453], "type": "Point"}, "id": "152", "properties": {"latitude (degrees_north)": 27.450000762939453, "longitude (degrees_east)": -86.44999694824219}, "type": "Feature"}, {"bbox": [-92.3332977294922, 27.183300018310547, -92.3332977294922, 27.183300018310547], "geometry": {"coordinates": [-92.3332977294922, 27.183300018310547], "type": "Point"}, "id": "153", "properties": {"latitude (degrees_north)": 27.183300018310547, "longitude (degrees_east)": -92.3332977294922}, "type": "Feature"}, {"bbox": [-95.02999877929688, 26.670000076293945, -95.02999877929688, 26.670000076293945], "geometry": {"coordinates": [-95.02999877929688, 26.670000076293945], "type": "Point"}, "id": "154", "properties": {"latitude (degrees_north)": 26.670000076293945, "longitude (degrees_east)": -95.02999877929688}, "type": "Feature"}, {"bbox": [-88.56999969482422, 25.472000122070312, -88.56999969482422, 25.472000122070312], "geometry": {"coordinates": [-88.56999969482422, 25.472000122070312], "type": "Point"}, "id": "155", "properties": {"latitude (degrees_north)": 25.472000122070312, "longitude (degrees_east)": -88.56999969482422}, "type": "Feature"}, {"bbox": [-92.0001983642578, 27.79199981689453, -92.0001983642578, 27.79199981689453], "geometry": {"coordinates": [-92.0001983642578, 27.79199981689453], "type": "Point"}, "id": "156", "properties": {"latitude (degrees_north)": 27.79199981689453, "longitude (degrees_east)": -92.0001983642578}, "type": "Feature"}, {"bbox": [-94.1999969482422, 27.738500595092773, -94.1999969482422, 27.738500595092773], "geometry": {"coordinates": [-94.1999969482422, 27.738500595092773], "type": "Point"}, "id": "157", "properties": {"latitude (degrees_north)": 27.738500595092773, "longitude (degrees_east)": -94.1999969482422}, "type": "Feature"}, {"bbox": [-92.8563003540039, 27.874799728393555, -92.8563003540039, 27.874799728393555], "geometry": {"coordinates": [-92.8563003540039, 27.874799728393555], "type": "Point"}, "id": "158", "properties": {"latitude (degrees_north)": 27.874799728393555, "longitude (degrees_east)": -92.8563003540039}, "type": "Feature"}, {"bbox": [-94.22470092773438, 27.65970039367676, -94.22470092773438, 27.65970039367676], "geometry": {"coordinates": [-94.22470092773438, 27.65970039367676], "type": "Point"}, "id": "159", "properties": {"latitude (degrees_north)": 27.65970039367676, "longitude (degrees_east)": -94.22470092773438}, "type": "Feature"}, {"bbox": [-88.9761962890625, 28.89539909362793, -88.9761962890625, 28.89539909362793], "geometry": {"coordinates": [-88.9761962890625, 28.89539909362793], "type": "Point"}, "id": "160", "properties": {"latitude (degrees_north)": 28.89539909362793, "longitude (degrees_east)": -88.9761962890625}, "type": "Feature"}, {"bbox": [-92.69200134277344, 27.549999237060547, -92.69200134277344, 27.549999237060547], "geometry": {"coordinates": [-92.69200134277344, 27.549999237060547], "type": "Point"}, "id": "161", "properties": {"latitude (degrees_north)": 27.549999237060547, "longitude (degrees_east)": -92.69200134277344}, "type": "Feature"}, {"bbox": [-84.31700134277344, 24.850000381469727, -84.31700134277344, 24.850000381469727], "geometry": {"coordinates": [-84.31700134277344, 24.850000381469727], "type": "Point"}, "id": "162", "properties": {"latitude (degrees_north)": 24.850000381469727, "longitude (degrees_east)": -84.31700134277344}, "type": "Feature"}, {"bbox": [-85.9800033569336, 23.75, -85.9800033569336, 23.75], "geometry": {"coordinates": [-85.9800033569336, 23.75], "type": "Point"}, "id": "163", "properties": {"latitude (degrees_north)": 23.75, "longitude (degrees_east)": -85.9800033569336}, "type": "Feature"}, {"bbox": [-88.36299896240234, 26.23200035095215, -88.36299896240234, 26.23200035095215], "geometry": {"coordinates": [-88.36299896240234, 26.23200035095215], "type": "Point"}, "id": "164", "properties": {"latitude (degrees_north)": 26.23200035095215, "longitude (degrees_east)": -88.36299896240234}, "type": "Feature"}, {"bbox": [-91.32479858398438, 27.97050094604492, -91.32479858398438, 27.97050094604492], "geometry": {"coordinates": [-91.32479858398438, 27.97050094604492], "type": "Point"}, "id": "165", "properties": {"latitude (degrees_north)": 27.97050094604492, "longitude (degrees_east)": -91.32479858398438}, "type": "Feature"}, {"bbox": [-85.67669677734375, 27.679800033569336, -85.67669677734375, 27.679800033569336], "geometry": {"coordinates": [-85.67669677734375, 27.679800033569336], "type": "Point"}, "id": "166", "properties": {"latitude (degrees_north)": 27.679800033569336, "longitude (degrees_east)": -85.67669677734375}, "type": "Feature"}, {"bbox": [-88.16470336914062, 28.758699417114254, -88.16470336914062, 28.758699417114254], "geometry": {"coordinates": [-88.16470336914062, 28.758699417114254], "type": "Point"}, "id": "167", "properties": {"latitude (degrees_north)": 28.758699417114254, "longitude (degrees_east)": -88.16470336914062}, "type": "Feature"}, {"bbox": [-85.5999984741211, 23.54199981689453, -85.5999984741211, 23.54199981689453], "geometry": {"coordinates": [-85.5999984741211, 23.54199981689453], "type": "Point"}, "id": "168", "properties": {"latitude (degrees_north)": 23.54199981689453, "longitude (degrees_east)": -85.5999984741211}, "type": "Feature"}, {"bbox": [-84.86499786376953, 26.566699981689453, -84.86499786376953, 26.566699981689453], "geometry": {"coordinates": [-84.86499786376953, 26.566699981689453], "type": "Point"}, "id": "169", "properties": {"latitude (degrees_north)": 26.566699981689453, "longitude (degrees_east)": -84.86499786376953}, "type": "Feature"}, {"bbox": [-95.4000015258789, 20.479999542236328, -95.4000015258789, 20.479999542236328], "geometry": {"coordinates": [-95.4000015258789, 20.479999542236328], "type": "Point"}, "id": "170", "properties": {"latitude (degrees_north)": 20.479999542236328, "longitude (degrees_east)": -95.4000015258789}, "type": "Feature"}, {"bbox": [-93.875, 26.81170082092285, -93.875, 26.81170082092285], "geometry": {"coordinates": [-93.875, 26.81170082092285], "type": "Point"}, "id": "171", "properties": {"latitude (degrees_north)": 26.81170082092285, "longitude (degrees_east)": -93.875}, "type": "Feature"}, {"bbox": [-93.64199829101562, 19.799999237060547, -93.64199829101562, 19.799999237060547], "geometry": {"coordinates": [-93.64199829101562, 19.799999237060547], "type": "Point"}, "id": "172", "properties": {"latitude (degrees_north)": 19.799999237060547, "longitude (degrees_east)": -93.64199829101562}, "type": "Feature"}, {"bbox": [-93.23169708251952, 26.40329933166504, -93.23169708251952, 26.40329933166504], "geometry": {"coordinates": [-93.23169708251952, 26.40329933166504], "type": "Point"}, "id": "173", "properties": {"latitude (degrees_north)": 26.40329933166504, "longitude (degrees_east)": -93.23169708251952}, "type": "Feature"}, {"bbox": [-88.66829681396484, 25.670000076293945, -88.66829681396484, 25.670000076293945], "geometry": {"coordinates": [-88.66829681396484, 25.670000076293945], "type": "Point"}, "id": "174", "properties": {"latitude (degrees_north)": 25.670000076293945, "longitude (degrees_east)": -88.66829681396484}, "type": "Feature"}, {"bbox": [-91.00379943847656, 26.99970054626465, -91.00379943847656, 26.99970054626465], "geometry": {"coordinates": [-91.00379943847656, 26.99970054626465], "type": "Point"}, "id": "175", "properties": {"latitude (degrees_north)": 26.99970054626465, "longitude (degrees_east)": -91.00379943847656}, "type": "Feature"}, {"bbox": [-86.4000015258789, 25.170000076293945, -86.4000015258789, 25.170000076293945], "geometry": {"coordinates": [-86.4000015258789, 25.170000076293945], "type": "Point"}, "id": "176", "properties": {"latitude (degrees_north)": 25.170000076293945, "longitude (degrees_east)": -86.4000015258789}, "type": "Feature"}, {"bbox": [-84.44999694824219, 26.132999420166016, -84.44999694824219, 26.132999420166016], "geometry": {"coordinates": [-84.44999694824219, 26.132999420166016], "type": "Point"}, "id": "177", "properties": {"latitude (degrees_north)": 26.132999420166016, "longitude (degrees_east)": -84.44999694824219}, "type": "Feature"}, {"bbox": [-88.08000183105469, 27.57999992370605, -88.08000183105469, 27.57999992370605], "geometry": {"coordinates": [-88.08000183105469, 27.57999992370605], "type": "Point"}, "id": "178", "properties": {"latitude (degrees_north)": 27.57999992370605, "longitude (degrees_east)": -88.08000183105469}, "type": "Feature"}, {"bbox": [-89.5, 24.5, -89.5, 24.5], "geometry": {"coordinates": [-89.5, 24.5], "type": "Point"}, "id": "179", "properties": {"latitude (degrees_north)": 24.5, "longitude (degrees_east)": -89.5}, "type": "Feature"}, {"bbox": [-95.78500366210938, 27.524999618530277, -95.78500366210938, 27.524999618530277], "geometry": {"coordinates": [-95.78500366210938, 27.524999618530277], "type": "Point"}, "id": "180", "properties": {"latitude (degrees_north)": 27.524999618530277, "longitude (degrees_east)": -95.78500366210938}, "type": "Feature"}, {"bbox": [-85.4000015258789, 22.8700008392334, -85.4000015258789, 22.8700008392334], "geometry": {"coordinates": [-85.4000015258789, 22.8700008392334], "type": "Point"}, "id": "181", "properties": {"latitude (degrees_north)": 22.8700008392334, "longitude (degrees_east)": -85.4000015258789}, "type": "Feature"}, {"bbox": [-86.78890228271484, 29.13400077819824, -86.78890228271484, 29.13400077819824], "geometry": {"coordinates": [-86.78890228271484, 29.13400077819824], "type": "Point"}, "id": "182", "properties": {"latitude (degrees_north)": 29.13400077819824, "longitude (degrees_east)": -86.78890228271484}, "type": "Feature"}, {"bbox": [-95.1750030517578, 20.757999420166016, -95.1750030517578, 20.757999420166016], "geometry": {"coordinates": [-95.1750030517578, 20.757999420166016], "type": "Point"}, "id": "183", "properties": {"latitude (degrees_north)": 20.757999420166016, "longitude (degrees_east)": -95.1750030517578}, "type": "Feature"}, {"bbox": [-88.943603515625, 28.797800064086918, -88.943603515625, 28.797800064086918], "geometry": {"coordinates": [-88.943603515625, 28.797800064086918], "type": "Point"}, "id": "184", "properties": {"latitude (degrees_north)": 28.797800064086918, "longitude (degrees_east)": -88.943603515625}, "type": "Feature"}, {"bbox": [-95.9718017578125, 26.01580047607422, -95.9718017578125, 26.01580047607422], "geometry": {"coordinates": [-95.9718017578125, 26.01580047607422], "type": "Point"}, "id": "185", "properties": {"latitude (degrees_north)": 26.01580047607422, "longitude (degrees_east)": -95.9718017578125}, "type": "Feature"}, {"bbox": [-96.01699829101562, 25.399999618530277, -96.01699829101562, 25.399999618530277], "geometry": {"coordinates": [-96.01699829101562, 25.399999618530277], "type": "Point"}, "id": "186", "properties": {"latitude (degrees_north)": 25.399999618530277, "longitude (degrees_east)": -96.01699829101562}, "type": "Feature"}, {"bbox": [-86.52999877929688, 27.350000381469727, -86.52999877929688, 27.350000381469727], "geometry": {"coordinates": [-86.52999877929688, 27.350000381469727], "type": "Point"}, "id": "187", "properties": {"latitude (degrees_north)": 27.350000381469727, "longitude (degrees_east)": -86.52999877929688}, "type": "Feature"}, {"bbox": [-94.3280029296875, 25.617000579833984, -94.3280029296875, 25.617000579833984], "geometry": {"coordinates": [-94.3280029296875, 25.617000579833984], "type": "Point"}, "id": "188", "properties": {"latitude (degrees_north)": 25.617000579833984, "longitude (degrees_east)": -94.3280029296875}, "type": "Feature"}, {"bbox": [-91.99849700927734, 27.74880027770996, -91.99849700927734, 27.74880027770996], "geometry": {"coordinates": [-91.99849700927734, 27.74880027770996], "type": "Point"}, "id": "189", "properties": {"latitude (degrees_north)": 27.74880027770996, "longitude (degrees_east)": -91.99849700927734}, "type": "Feature"}, {"bbox": [-87.7020034790039, 24.517000198364254, -87.7020034790039, 24.517000198364254], "geometry": {"coordinates": [-87.7020034790039, 24.517000198364254], "type": "Point"}, "id": "190", "properties": {"latitude (degrees_north)": 24.517000198364254, "longitude (degrees_east)": -87.7020034790039}, "type": "Feature"}, {"bbox": [-87.30000305175781, 28.530000686645508, -87.30000305175781, 28.530000686645508], "geometry": {"coordinates": [-87.30000305175781, 28.530000686645508], "type": "Point"}, "id": "191", "properties": {"latitude (degrees_north)": 28.530000686645508, "longitude (degrees_east)": -87.30000305175781}, "type": "Feature"}, {"bbox": [-85.1500015258789, 23.75, -85.1500015258789, 23.75], "geometry": {"coordinates": [-85.1500015258789, 23.75], "type": "Point"}, "id": "192", "properties": {"latitude (degrees_north)": 23.75, "longitude (degrees_east)": -85.1500015258789}, "type": "Feature"}, {"bbox": [-95.9000015258789, 19.670000076293945, -95.9000015258789, 19.670000076293945], "geometry": {"coordinates": [-95.9000015258789, 19.670000076293945], "type": "Point"}, "id": "193", "properties": {"latitude (degrees_north)": 19.670000076293945, "longitude (degrees_east)": -95.9000015258789}, "type": "Feature"}, {"bbox": [-94.74330139160156, 26.998300552368164, -94.74330139160156, 26.998300552368164], "geometry": {"coordinates": [-94.74330139160156, 26.998300552368164], "type": "Point"}, "id": "194", "properties": {"latitude (degrees_north)": 26.998300552368164, "longitude (degrees_east)": -94.74330139160156}, "type": "Feature"}, {"bbox": [-86.69999694824219, 27.600000381469727, -86.69999694824219, 27.600000381469727], "geometry": {"coordinates": [-86.69999694824219, 27.600000381469727], "type": "Point"}, "id": "195", "properties": {"latitude (degrees_north)": 27.600000381469727, "longitude (degrees_east)": -86.69999694824219}, "type": "Feature"}, {"bbox": [-94.83380126953124, 26.765499114990234, -94.83380126953124, 26.765499114990234], "geometry": {"coordinates": [-94.83380126953124, 26.765499114990234], "type": "Point"}, "id": "196", "properties": {"latitude (degrees_north)": 26.765499114990234, "longitude (degrees_east)": -94.83380126953124}, "type": "Feature"}, {"bbox": [-84.64669799804688, 26.117000579833984, -84.64669799804688, 26.117000579833984], "geometry": {"coordinates": [-84.64669799804688, 26.117000579833984], "type": "Point"}, "id": "197", "properties": {"latitude (degrees_north)": 26.117000579833984, "longitude (degrees_east)": -84.64669799804688}, "type": "Feature"}, {"bbox": [-94.99669647216795, 26.670000076293945, -94.99669647216795, 26.670000076293945], "geometry": {"coordinates": [-94.99669647216795, 26.670000076293945], "type": "Point"}, "id": "198", "properties": {"latitude (degrees_north)": 26.670000076293945, "longitude (degrees_east)": -94.99669647216795}, "type": "Feature"}, {"bbox": [-85.58300018310547, 25.482999801635746, -85.58300018310547, 25.482999801635746], "geometry": {"coordinates": [-85.58300018310547, 25.482999801635746], "type": "Point"}, "id": "199", "properties": {"latitude (degrees_north)": 25.482999801635746, "longitude (degrees_east)": -85.58300018310547}, "type": "Feature"}, {"bbox": [-86.6312026977539, 29.315200805664062, -86.6312026977539, 29.315200805664062], "geometry": {"coordinates": [-86.6312026977539, 29.315200805664062], "type": "Point"}, "id": "200", "properties": {"latitude (degrees_north)": 29.315200805664062, "longitude (degrees_east)": -86.6312026977539}, "type": "Feature"}, {"bbox": [-91.54499816894533, 27.943500518798828, -91.54499816894533, 27.943500518798828], "geometry": {"coordinates": [-91.54499816894533, 27.943500518798828], "type": "Point"}, "id": "201", "properties": {"latitude (degrees_north)": 27.943500518798828, "longitude (degrees_east)": -91.54499816894533}, "type": "Feature"}, {"bbox": [-88.17050170898438, 28.61669921875, -88.17050170898438, 28.61669921875], "geometry": {"coordinates": [-88.17050170898438, 28.61669921875], "type": "Point"}, "id": "202", "properties": {"latitude (degrees_north)": 28.61669921875, "longitude (degrees_east)": -88.17050170898438}, "type": "Feature"}, {"bbox": [-95.05999755859376, 27.809200286865234, -95.05999755859376, 27.809200286865234], "geometry": {"coordinates": [-95.05999755859376, 27.809200286865234], "type": "Point"}, "id": "203", "properties": {"latitude (degrees_north)": 27.809200286865234, "longitude (degrees_east)": -95.05999755859376}, "type": "Feature"}, {"bbox": [-86.96700286865234, 24.80299949645996, -86.96700286865234, 24.80299949645996], "geometry": {"coordinates": [-86.96700286865234, 24.80299949645996], "type": "Point"}, "id": "204", "properties": {"latitude (degrees_north)": 24.80299949645996, "longitude (degrees_east)": -86.96700286865234}, "type": "Feature"}, {"bbox": [-85.8499984741211, 25.21999931335449, -85.8499984741211, 25.21999931335449], "geometry": {"coordinates": [-85.8499984741211, 25.21999931335449], "type": "Point"}, "id": "205", "properties": {"latitude (degrees_north)": 25.21999931335449, "longitude (degrees_east)": -85.8499984741211}, "type": "Feature"}, {"bbox": [-94.38999938964844, 22.80500030517578, -94.38999938964844, 22.80500030517578], "geometry": {"coordinates": [-94.38999938964844, 22.80500030517578], "type": "Point"}, "id": "206", "properties": {"latitude (degrees_north)": 22.80500030517578, "longitude (degrees_east)": -94.38999938964844}, "type": "Feature"}, {"bbox": [-92.85679626464844, 27.8754997253418, -92.85679626464844, 27.8754997253418], "geometry": {"coordinates": [-92.85679626464844, 27.8754997253418], "type": "Point"}, "id": "207", "properties": {"latitude (degrees_north)": 27.8754997253418, "longitude (degrees_east)": -92.85679626464844}, "type": "Feature"}, {"bbox": [-93.0, 27.0, -93.0, 27.0], "geometry": {"coordinates": [-93.0, 27.0], "type": "Point"}, "id": "208", "properties": {"latitude (degrees_north)": 27.0, "longitude (degrees_east)": -93.0}, "type": "Feature"}, {"bbox": [-93.3000030517578, 21.950000762939453, -93.3000030517578, 21.950000762939453], "geometry": {"coordinates": [-93.3000030517578, 21.950000762939453], "type": "Point"}, "id": "209", "properties": {"latitude (degrees_north)": 21.950000762939453, "longitude (degrees_east)": -93.3000030517578}, "type": "Feature"}, {"bbox": [-92.83799743652344, 21.132999420166016, -92.83799743652344, 21.132999420166016], "geometry": {"coordinates": [-92.83799743652344, 21.132999420166016], "type": "Point"}, "id": "210", "properties": {"latitude (degrees_north)": 21.132999420166016, "longitude (degrees_east)": -92.83799743652344}, "type": "Feature"}, {"bbox": [-96.08570098876952, 26.01619911193848, -96.08570098876952, 26.01619911193848], "geometry": {"coordinates": [-96.08570098876952, 26.01619911193848], "type": "Point"}, "id": "211", "properties": {"latitude (degrees_north)": 26.01619911193848, "longitude (degrees_east)": -96.08570098876952}, "type": "Feature"}, {"bbox": [-86.21330261230469, 28.402099609375, -86.21330261230469, 28.402099609375], "geometry": {"coordinates": [-86.21330261230469, 28.402099609375], "type": "Point"}, "id": "212", "properties": {"latitude (degrees_north)": 28.402099609375, "longitude (degrees_east)": -86.21330261230469}, "type": "Feature"}, {"bbox": [-92.00669860839844, 27.343299865722656, -92.00669860839844, 27.343299865722656], "geometry": {"coordinates": [-92.00669860839844, 27.343299865722656], "type": "Point"}, "id": "213", "properties": {"latitude (degrees_north)": 27.343299865722656, "longitude (degrees_east)": -92.00669860839844}, "type": "Feature"}, {"bbox": [-95.4000015258789, 25.040000915527344, -95.4000015258789, 25.040000915527344], "geometry": {"coordinates": [-95.4000015258789, 25.040000915527344], "type": "Point"}, "id": "214", "properties": {"latitude (degrees_north)": 25.040000915527344, "longitude (degrees_east)": -95.4000015258789}, "type": "Feature"}, {"bbox": [-92.4000015258789, 22.024999618530277, -92.4000015258789, 22.024999618530277], "geometry": {"coordinates": [-92.4000015258789, 22.024999618530277], "type": "Point"}, "id": "215", "properties": {"latitude (degrees_north)": 22.024999618530277, "longitude (degrees_east)": -92.4000015258789}, "type": "Feature"}, {"bbox": [-84.91699981689453, 24.41699981689453, -84.91699981689453, 24.41699981689453], "geometry": {"coordinates": [-84.91699981689453, 24.41699981689453], "type": "Point"}, "id": "216", "properties": {"latitude (degrees_north)": 24.41699981689453, "longitude (degrees_east)": -84.91699981689453}, "type": "Feature"}, {"bbox": [-87.88890075683594, 29.24720001220703, -87.88890075683594, 29.24720001220703], "geometry": {"coordinates": [-87.88890075683594, 29.24720001220703], "type": "Point"}, "id": "217", "properties": {"latitude (degrees_north)": 29.24720001220703, "longitude (degrees_east)": -87.88890075683594}, "type": "Feature"}, {"bbox": [-85.1500015258789, 27.517000198364254, -85.1500015258789, 27.517000198364254], "geometry": {"coordinates": [-85.1500015258789, 27.517000198364254], "type": "Point"}, "id": "218", "properties": {"latitude (degrees_north)": 27.517000198364254, "longitude (degrees_east)": -85.1500015258789}, "type": "Feature"}, {"bbox": [-82.2699966430664, 23.25, -82.2699966430664, 23.25], "geometry": {"coordinates": [-82.2699966430664, 23.25], "type": "Point"}, "id": "219", "properties": {"latitude (degrees_north)": 23.25, "longitude (degrees_east)": -82.2699966430664}, "type": "Feature"}, {"bbox": [-89.70500183105469, 28.02300071716309, -89.70500183105469, 28.02300071716309], "geometry": {"coordinates": [-89.70500183105469, 28.02300071716309], "type": "Point"}, "id": "220", "properties": {"latitude (degrees_north)": 28.02300071716309, "longitude (degrees_east)": -89.70500183105469}, "type": "Feature"}, {"bbox": [-93.06999969482422, 27.450000762939453, -93.06999969482422, 27.450000762939453], "geometry": {"coordinates": [-93.06999969482422, 27.450000762939453], "type": "Point"}, "id": "221", "properties": {"latitude (degrees_north)": 27.450000762939453, "longitude (degrees_east)": -93.06999969482422}, "type": "Feature"}, {"bbox": [-87.16999816894531, 28.350000381469727, -87.16999816894531, 28.350000381469727], "geometry": {"coordinates": [-87.16999816894531, 28.350000381469727], "type": "Point"}, "id": "222", "properties": {"latitude (degrees_north)": 28.350000381469727, "longitude (degrees_east)": -87.16999816894531}, "type": "Feature"}, {"bbox": [-87.50029754638672, 28.766000747680664, -87.50029754638672, 28.766000747680664], "geometry": {"coordinates": [-87.50029754638672, 28.766000747680664], "type": "Point"}, "id": "223", "properties": {"latitude (degrees_north)": 28.766000747680664, "longitude (degrees_east)": -87.50029754638672}, "type": "Feature"}, {"bbox": [-88.82499694824219, 25.558000564575195, -88.82499694824219, 25.558000564575195], "geometry": {"coordinates": [-88.82499694824219, 25.558000564575195], "type": "Point"}, "id": "224", "properties": {"latitude (degrees_north)": 25.558000564575195, "longitude (degrees_east)": -88.82499694824219}, "type": "Feature"}, {"bbox": [-88.00129699707031, 26.0004997253418, -88.00129699707031, 26.0004997253418], "geometry": {"coordinates": [-88.00129699707031, 26.0004997253418], "type": "Point"}, "id": "225", "properties": {"latitude (degrees_north)": 26.0004997253418, "longitude (degrees_east)": -88.00129699707031}, "type": "Feature"}, {"bbox": [-96.0, 23.0, -96.0, 23.0], "geometry": {"coordinates": [-96.0, 23.0], "type": "Point"}, "id": "226", "properties": {"latitude (degrees_north)": 23.0, "longitude (degrees_east)": -96.0}, "type": "Feature"}, {"bbox": [-87.3499984741211, 24.799999237060547, -87.3499984741211, 24.799999237060547], "geometry": {"coordinates": [-87.3499984741211, 24.799999237060547], "type": "Point"}, "id": "227", "properties": {"latitude (degrees_north)": 24.799999237060547, "longitude (degrees_east)": -87.3499984741211}, "type": "Feature"}, {"bbox": [-84.58000183105469, 26.670000076293945, -84.58000183105469, 26.670000076293945], "geometry": {"coordinates": [-84.58000183105469, 26.670000076293945], "type": "Point"}, "id": "228", "properties": {"latitude (degrees_north)": 26.670000076293945, "longitude (degrees_east)": -84.58000183105469}, "type": "Feature"}, {"bbox": [-86.28299713134766, 21.575000762939453, -86.28299713134766, 21.575000762939453], "geometry": {"coordinates": [-86.28299713134766, 21.575000762939453], "type": "Point"}, "id": "229", "properties": {"latitude (degrees_north)": 21.575000762939453, "longitude (degrees_east)": -86.28299713134766}, "type": "Feature"}, {"bbox": [-82.9800033569336, 23.96999931335449, -82.9800033569336, 23.96999931335449], "geometry": {"coordinates": [-82.9800033569336, 23.96999931335449], "type": "Point"}, "id": "230", "properties": {"latitude (degrees_north)": 23.96999931335449, "longitude (degrees_east)": -82.9800033569336}, "type": "Feature"}, {"bbox": [-87.3582992553711, 29.09440040588379, -87.3582992553711, 29.09440040588379], "geometry": {"coordinates": [-87.3582992553711, 29.09440040588379], "type": "Point"}, "id": "231", "properties": {"latitude (degrees_north)": 29.09440040588379, "longitude (degrees_east)": -87.3582992553711}, "type": "Feature"}, {"bbox": [-88.97550201416016, 28.88870048522949, -88.97550201416016, 28.88870048522949], "geometry": {"coordinates": [-88.97550201416016, 28.88870048522949], "type": "Point"}, "id": "232", "properties": {"latitude (degrees_north)": 28.88870048522949, "longitude (degrees_east)": -88.97550201416016}, "type": "Feature"}, {"bbox": [-89.74720001220703, 27.86849975585937, -89.74720001220703, 27.86849975585937], "geometry": {"coordinates": [-89.74720001220703, 27.86849975585937], "type": "Point"}, "id": "233", "properties": {"latitude (degrees_north)": 27.86849975585937, "longitude (degrees_east)": -89.74720001220703}, "type": "Feature"}, {"bbox": [-81.62000274658203, 24.18000030517578, -81.62000274658203, 24.18000030517578], "geometry": {"coordinates": [-81.62000274658203, 24.18000030517578], "type": "Point"}, "id": "234", "properties": {"latitude (degrees_north)": 24.18000030517578, "longitude (degrees_east)": -81.62000274658203}, "type": "Feature"}, {"bbox": [-93.46829986572266, 27.75830078125, -93.46829986572266, 27.75830078125], "geometry": {"coordinates": [-93.46829986572266, 27.75830078125], "type": "Point"}, "id": "235", "properties": {"latitude (degrees_north)": 27.75830078125, "longitude (degrees_east)": -93.46829986572266}, "type": "Feature"}, {"bbox": [-82.16999816894531, 23.780000686645508, -82.16999816894531, 23.780000686645508], "geometry": {"coordinates": [-82.16999816894531, 23.780000686645508], "type": "Point"}, "id": "236", "properties": {"latitude (degrees_north)": 23.780000686645508, "longitude (degrees_east)": -82.16999816894531}, "type": "Feature"}, {"bbox": [-80.8499984741211, 23.649999618530277, -80.8499984741211, 23.649999618530277], "geometry": {"coordinates": [-80.8499984741211, 23.649999618530277], "type": "Point"}, "id": "237", "properties": {"latitude (degrees_north)": 23.649999618530277, "longitude (degrees_east)": -80.8499984741211}, "type": "Feature"}, {"bbox": [-94.052001953125, 24.933000564575195, -94.052001953125, 24.933000564575195], "geometry": {"coordinates": [-94.052001953125, 24.933000564575195], "type": "Point"}, "id": "238", "properties": {"latitude (degrees_north)": 24.933000564575195, "longitude (degrees_east)": -94.052001953125}, "type": "Feature"}, {"bbox": [-89.23300170898438, 28.04199981689453, -89.23300170898438, 28.04199981689453], "geometry": {"coordinates": [-89.23300170898438, 28.04199981689453], "type": "Point"}, "id": "239", "properties": {"latitude (degrees_north)": 28.04199981689453, "longitude (degrees_east)": -89.23300170898438}, "type": "Feature"}, {"bbox": [-83.30000305175781, 23.1299991607666, -83.30000305175781, 23.1299991607666], "geometry": {"coordinates": [-83.30000305175781, 23.1299991607666], "type": "Point"}, "id": "240", "properties": {"latitude (degrees_north)": 23.1299991607666, "longitude (degrees_east)": -83.30000305175781}, "type": "Feature"}, {"bbox": [-94.9499969482422, 23.31999969482422, -94.9499969482422, 23.31999969482422], "geometry": {"coordinates": [-94.9499969482422, 23.31999969482422], "type": "Point"}, "id": "241", "properties": {"latitude (degrees_north)": 23.31999969482422, "longitude (degrees_east)": -94.9499969482422}, "type": "Feature"}, {"bbox": [-96.10399627685548, 27.429800033569336, -96.10399627685548, 27.429800033569336], "geometry": {"coordinates": [-96.10399627685548, 27.429800033569336], "type": "Point"}, "id": "242", "properties": {"latitude (degrees_north)": 27.429800033569336, "longitude (degrees_east)": -96.10399627685548}, "type": "Feature"}, {"bbox": [-87.97270202636719, 29.069000244140625, -87.97270202636719, 29.069000244140625], "geometry": {"coordinates": [-87.97270202636719, 29.069000244140625], "type": "Point"}, "id": "243", "properties": {"latitude (degrees_north)": 29.069000244140625, "longitude (degrees_east)": -87.97270202636719}, "type": "Feature"}, {"bbox": [-94.99949645996094, 26.018800735473636, -94.99949645996094, 26.018800735473636], "geometry": {"coordinates": [-94.99949645996094, 26.018800735473636], "type": "Point"}, "id": "244", "properties": {"latitude (degrees_north)": 26.018800735473636, "longitude (degrees_east)": -94.99949645996094}, "type": "Feature"}, {"bbox": [-87.88890075683594, 29.201099395751957, -87.88890075683594, 29.201099395751957], "geometry": {"coordinates": [-87.88890075683594, 29.201099395751957], "type": "Point"}, "id": "245", "properties": {"latitude (degrees_north)": 29.201099395751957, "longitude (degrees_east)": -87.88890075683594}, "type": "Feature"}, {"bbox": [-87.87200164794922, 24.5, -87.87200164794922, 24.5], "geometry": {"coordinates": [-87.87200164794922, 24.5], "type": "Point"}, "id": "246", "properties": {"latitude (degrees_north)": 24.5, "longitude (degrees_east)": -87.87200164794922}, "type": "Feature"}, {"bbox": [-85.49700164794922, 21.875, -85.49700164794922, 21.875], "geometry": {"coordinates": [-85.49700164794922, 21.875], "type": "Point"}, "id": "247", "properties": {"latitude (degrees_north)": 21.875, "longitude (degrees_east)": -85.49700164794922}, "type": "Feature"}, {"bbox": [-95.49919891357422, 26.024799346923828, -95.49919891357422, 26.024799346923828], "geometry": {"coordinates": [-95.49919891357422, 26.024799346923828], "type": "Point"}, "id": "248", "properties": {"latitude (degrees_north)": 26.024799346923828, "longitude (degrees_east)": -95.49919891357422}, "type": "Feature"}, {"bbox": [-86.52999877929688, 27.670000076293945, -86.52999877929688, 27.670000076293945], "geometry": {"coordinates": [-86.52999877929688, 27.670000076293945], "type": "Point"}, "id": "249", "properties": {"latitude (degrees_north)": 27.670000076293945, "longitude (degrees_east)": -86.52999877929688}, "type": "Feature"}, {"bbox": [-91.32479858398438, 27.969200134277344, -91.32479858398438, 27.969200134277344], "geometry": {"coordinates": [-91.32479858398438, 27.969200134277344], "type": "Point"}, "id": "250", "properties": {"latitude (degrees_north)": 27.969200134277344, "longitude (degrees_east)": -91.32479858398438}, "type": "Feature"}, {"bbox": [-96.25, 26.75, -96.25, 26.75], "geometry": {"coordinates": [-96.25, 26.75], "type": "Point"}, "id": "251", "properties": {"latitude (degrees_north)": 26.75, "longitude (degrees_east)": -96.25}, "type": "Feature"}, {"bbox": [-92.99929809570312, 27.45680046081543, -92.99929809570312, 27.45680046081543], "geometry": {"coordinates": [-92.99929809570312, 27.45680046081543], "type": "Point"}, "id": "252", "properties": {"latitude (degrees_north)": 27.45680046081543, "longitude (degrees_east)": -92.99929809570312}, "type": "Feature"}, {"bbox": [-96.31120300292967, 26.01320075988769, -96.31120300292967, 26.01320075988769], "geometry": {"coordinates": [-96.31120300292967, 26.01320075988769], "type": "Point"}, "id": "253", "properties": {"latitude (degrees_north)": 26.01320075988769, "longitude (degrees_east)": -96.31120300292967}, "type": "Feature"}, {"bbox": [-89.9000015258789, 27.31999969482422, -89.9000015258789, 27.31999969482422], "geometry": {"coordinates": [-89.9000015258789, 27.31999969482422], "type": "Point"}, "id": "254", "properties": {"latitude (degrees_north)": 27.31999969482422, "longitude (degrees_east)": -89.9000015258789}, "type": "Feature"}, {"bbox": [-90.85800170898438, 26.799999237060547, -90.85800170898438, 26.799999237060547], "geometry": {"coordinates": [-90.85800170898438, 26.799999237060547], "type": "Point"}, "id": "255", "properties": {"latitude (degrees_north)": 26.799999237060547, "longitude (degrees_east)": -90.85800170898438}, "type": "Feature"}, {"bbox": [-85.90010070800781, 27.84830093383789, -85.90010070800781, 27.84830093383789], "geometry": {"coordinates": [-85.90010070800781, 27.84830093383789], "type": "Point"}, "id": "256", "properties": {"latitude (degrees_north)": 27.84830093383789, "longitude (degrees_east)": -85.90010070800781}, "type": "Feature"}, {"bbox": [-91.32469940185548, 27.9689998626709, -91.32469940185548, 27.9689998626709], "geometry": {"coordinates": [-91.32469940185548, 27.9689998626709], "type": "Point"}, "id": "257", "properties": {"latitude (degrees_north)": 27.9689998626709, "longitude (degrees_east)": -91.32469940185548}, "type": "Feature"}, {"bbox": [-85.55000305175781, 28.149999618530277, -85.55000305175781, 28.149999618530277], "geometry": {"coordinates": [-85.55000305175781, 28.149999618530277], "type": "Point"}, "id": "258", "properties": {"latitude (degrees_north)": 28.149999618530277, "longitude (degrees_east)": -85.55000305175781}, "type": "Feature"}, {"bbox": [-85.43299865722656, 21.700000762939453, -85.43299865722656, 21.700000762939453], "geometry": {"coordinates": [-85.43299865722656, 21.700000762939453], "type": "Point"}, "id": "259", "properties": {"latitude (degrees_north)": 21.700000762939453, "longitude (degrees_east)": -85.43299865722656}, "type": "Feature"}, {"bbox": [-80.34500122070312, 24.46999931335449, -80.34500122070312, 24.46999931335449], "geometry": {"coordinates": [-80.34500122070312, 24.46999931335449], "type": "Point"}, "id": "260", "properties": {"latitude (degrees_north)": 24.46999931335449, "longitude (degrees_east)": -80.34500122070312}, "type": "Feature"}, {"bbox": [-86.06999969482422, 22.03300094604492, -86.06999969482422, 22.03300094604492], "geometry": {"coordinates": [-86.06999969482422, 22.03300094604492], "type": "Point"}, "id": "261", "properties": {"latitude (degrees_north)": 22.03300094604492, "longitude (degrees_east)": -86.06999969482422}, "type": "Feature"}, {"bbox": [-88.94779968261719, 28.80290031433105, -88.94779968261719, 28.80290031433105], "geometry": {"coordinates": [-88.94779968261719, 28.80290031433105], "type": "Point"}, "id": "262", "properties": {"latitude (degrees_north)": 28.80290031433105, "longitude (degrees_east)": -88.94779968261719}, "type": "Feature"}, {"bbox": [-96.33670043945312, 27.126300811767575, -96.33670043945312, 27.126300811767575], "geometry": {"coordinates": [-96.33670043945312, 27.126300811767575], "type": "Point"}, "id": "263", "properties": {"latitude (degrees_north)": 27.126300811767575, "longitude (degrees_east)": -96.33670043945312}, "type": "Feature"}, {"bbox": [-96.25, 27.26000022888184, -96.25, 27.26000022888184], "geometry": {"coordinates": [-96.25, 27.26000022888184], "type": "Point"}, "id": "264", "properties": {"latitude (degrees_north)": 27.26000022888184, "longitude (degrees_east)": -96.25}, "type": "Feature"}, {"bbox": [-89.50669860839844, 28.093299865722656, -89.50669860839844, 28.093299865722656], "geometry": {"coordinates": [-89.50669860839844, 28.093299865722656], "type": "Point"}, "id": "265", "properties": {"latitude (degrees_north)": 28.093299865722656, "longitude (degrees_east)": -89.50669860839844}, "type": "Feature"}, {"bbox": [-92.970703125, 27.28230094909668, -92.970703125, 27.28230094909668], "geometry": {"coordinates": [-92.970703125, 27.28230094909668], "type": "Point"}, "id": "266", "properties": {"latitude (degrees_north)": 27.28230094909668, "longitude (degrees_east)": -92.970703125}, "type": "Feature"}, {"bbox": [-94.7699966430664, 26.551700592041016, -94.7699966430664, 26.551700592041016], "geometry": {"coordinates": [-94.7699966430664, 26.551700592041016], "type": "Point"}, "id": "267", "properties": {"latitude (degrees_north)": 26.551700592041016, "longitude (degrees_east)": -94.7699966430664}, "type": "Feature"}, {"bbox": [-85.53780364990234, 27.626300811767575, -85.53780364990234, 27.626300811767575], "geometry": {"coordinates": [-85.53780364990234, 27.626300811767575], "type": "Point"}, "id": "268", "properties": {"latitude (degrees_north)": 27.626300811767575, "longitude (degrees_east)": -85.53780364990234}, "type": "Feature"}, {"bbox": [-86.80000305175781, 24.232999801635746, -86.80000305175781, 24.232999801635746], "geometry": {"coordinates": [-86.80000305175781, 24.232999801635746], "type": "Point"}, "id": "269", "properties": {"latitude (degrees_north)": 24.232999801635746, "longitude (degrees_east)": -86.80000305175781}, "type": "Feature"}, {"bbox": [-85.52999877929688, 27.655000686645508, -85.52999877929688, 27.655000686645508], "geometry": {"coordinates": [-85.52999877929688, 27.655000686645508], "type": "Point"}, "id": "270", "properties": {"latitude (degrees_north)": 27.655000686645508, "longitude (degrees_east)": -85.52999877929688}, "type": "Feature"}, {"bbox": [-87.97889709472656, 27.94029998779297, -87.97889709472656, 27.94029998779297], "geometry": {"coordinates": [-87.97889709472656, 27.94029998779297], "type": "Point"}, "id": "271", "properties": {"latitude (degrees_north)": 27.94029998779297, "longitude (degrees_east)": -87.97889709472656}, "type": "Feature"}, {"bbox": [-84.63300323486328, 24.899999618530277, -84.63300323486328, 24.899999618530277], "geometry": {"coordinates": [-84.63300323486328, 24.899999618530277], "type": "Point"}, "id": "272", "properties": {"latitude (degrees_north)": 24.899999618530277, "longitude (degrees_east)": -84.63300323486328}, "type": "Feature"}, {"bbox": [-94.77799987792967, 24.68000030517578, -94.77799987792967, 24.68000030517578], "geometry": {"coordinates": [-94.77799987792967, 24.68000030517578], "type": "Point"}, "id": "273", "properties": {"latitude (degrees_north)": 24.68000030517578, "longitude (degrees_east)": -94.77799987792967}, "type": "Feature"}, {"bbox": [-84.6500015258789, 25.232999801635746, -84.6500015258789, 25.232999801635746], "geometry": {"coordinates": [-84.6500015258789, 25.232999801635746], "type": "Point"}, "id": "274", "properties": {"latitude (degrees_north)": 25.232999801635746, "longitude (degrees_east)": -84.6500015258789}, "type": "Feature"}, {"bbox": [-85.2699966430664, 23.28300094604492, -85.2699966430664, 23.28300094604492], "geometry": {"coordinates": [-85.2699966430664, 23.28300094604492], "type": "Point"}, "id": "275", "properties": {"latitude (degrees_north)": 23.28300094604492, "longitude (degrees_east)": -85.2699966430664}, "type": "Feature"}, {"bbox": [-86.24590301513672, 29.017900466918945, -86.24590301513672, 29.017900466918945], "geometry": {"coordinates": [-86.24590301513672, 29.017900466918945], "type": "Point"}, "id": "276", "properties": {"latitude (degrees_north)": 29.017900466918945, "longitude (degrees_east)": -86.24590301513672}, "type": "Feature"}, {"bbox": [-84.68299865722656, 24.867000579833984, -84.68299865722656, 24.867000579833984], "geometry": {"coordinates": [-84.68299865722656, 24.867000579833984], "type": "Point"}, "id": "277", "properties": {"latitude (degrees_north)": 24.867000579833984, "longitude (degrees_east)": -84.68299865722656}, "type": "Feature"}, {"bbox": [-86.83329772949219, 29.558300018310547, -86.83329772949219, 29.558300018310547], "geometry": {"coordinates": [-86.83329772949219, 29.558300018310547], "type": "Point"}, "id": "278", "properties": {"latitude (degrees_north)": 29.558300018310547, "longitude (degrees_east)": -86.83329772949219}, "type": "Feature"}, {"bbox": [-89.64550018310547, 28.502500534057617, -89.64550018310547, 28.502500534057617], "geometry": {"coordinates": [-89.64550018310547, 28.502500534057617], "type": "Point"}, "id": "279", "properties": {"latitude (degrees_north)": 28.502500534057617, "longitude (degrees_east)": -89.64550018310547}, "type": "Feature"}, {"bbox": [-94.95980072021484, 27.62779998779297, -94.95980072021484, 27.62779998779297], "geometry": {"coordinates": [-94.95980072021484, 27.62779998779297], "type": "Point"}, "id": "280", "properties": {"latitude (degrees_north)": 27.62779998779297, "longitude (degrees_east)": -94.95980072021484}, "type": "Feature"}, {"bbox": [-92.0, 25.16670036315918, -92.0, 25.16670036315918], "geometry": {"coordinates": [-92.0, 25.16670036315918], "type": "Point"}, "id": "281", "properties": {"latitude (degrees_north)": 25.16670036315918, "longitude (degrees_east)": -92.0}, "type": "Feature"}, {"bbox": [-93.002197265625, 27.75480079650879, -93.002197265625, 27.75480079650879], "geometry": {"coordinates": [-93.002197265625, 27.75480079650879], "type": "Point"}, "id": "282", "properties": {"latitude (degrees_north)": 27.75480079650879, "longitude (degrees_east)": -93.002197265625}, "type": "Feature"}, {"bbox": [-87.47000122070312, 27.0, -87.47000122070312, 27.0], "geometry": {"coordinates": [-87.47000122070312, 27.0], "type": "Point"}, "id": "283", "properties": {"latitude (degrees_north)": 27.0, "longitude (degrees_east)": -87.47000122070312}, "type": "Feature"}, {"bbox": [-88.49929809570312, 27.560699462890625, -88.49929809570312, 27.560699462890625], "geometry": {"coordinates": [-88.49929809570312, 27.560699462890625], "type": "Point"}, "id": "284", "properties": {"latitude (degrees_north)": 27.560699462890625, "longitude (degrees_east)": -88.49929809570312}, "type": "Feature"}, {"bbox": [-87.3499984741211, 28.899999618530277, -87.3499984741211, 28.899999618530277], "geometry": {"coordinates": [-87.3499984741211, 28.899999618530277], "type": "Point"}, "id": "285", "properties": {"latitude (degrees_north)": 28.899999618530277, "longitude (degrees_east)": -87.3499984741211}, "type": "Feature"}, {"bbox": [-80.54499816894531, 24.05299949645996, -80.54499816894531, 24.05299949645996], "geometry": {"coordinates": [-80.54499816894531, 24.05299949645996], "type": "Point"}, "id": "286", "properties": {"latitude (degrees_north)": 24.05299949645996, "longitude (degrees_east)": -80.54499816894531}, "type": "Feature"}, {"bbox": [-87.4260025024414, 25.349000930786133, -87.4260025024414, 25.349000930786133], "geometry": {"coordinates": [-87.4260025024414, 25.349000930786133], "type": "Point"}, "id": "287", "properties": {"latitude (degrees_north)": 25.349000930786133, "longitude (degrees_east)": -87.4260025024414}, "type": "Feature"}, {"bbox": [-84.2300033569336, 24.3799991607666, -84.2300033569336, 24.3799991607666], "geometry": {"coordinates": [-84.2300033569336, 24.3799991607666], "type": "Point"}, "id": "288", "properties": {"latitude (degrees_north)": 24.3799991607666, "longitude (degrees_east)": -84.2300033569336}, "type": "Feature"}, {"bbox": [-94.95999908447266, 27.62820053100586, -94.95999908447266, 27.62820053100586], "geometry": {"coordinates": [-94.95999908447266, 27.62820053100586], "type": "Point"}, "id": "289", "properties": {"latitude (degrees_north)": 27.62820053100586, "longitude (degrees_east)": -94.95999908447266}, "type": "Feature"}, {"bbox": [-90.50769805908205, 27.9242000579834, -90.50769805908205, 27.9242000579834], "geometry": {"coordinates": [-90.50769805908205, 27.9242000579834], "type": "Point"}, "id": "290", "properties": {"latitude (degrees_north)": 27.9242000579834, "longitude (degrees_east)": -90.50769805908205}, "type": "Feature"}, {"bbox": [-86.83000183105469, 22.492000579833984, -86.83000183105469, 22.492000579833984], "geometry": {"coordinates": [-86.83000183105469, 22.492000579833984], "type": "Point"}, "id": "291", "properties": {"latitude (degrees_north)": 22.492000579833984, "longitude (degrees_east)": -86.83000183105469}, "type": "Feature"}, {"bbox": [-85.48200225830078, 23.16699981689453, -85.48200225830078, 23.16699981689453], "geometry": {"coordinates": [-85.48200225830078, 23.16699981689453], "type": "Point"}, "id": "292", "properties": {"latitude (degrees_north)": 23.16699981689453, "longitude (degrees_east)": -85.48200225830078}, "type": "Feature"}, {"bbox": [-90.5011978149414, 28.02120018005371, -90.5011978149414, 28.02120018005371], "geometry": {"coordinates": [-90.5011978149414, 28.02120018005371], "type": "Point"}, "id": "293", "properties": {"latitude (degrees_north)": 28.02120018005371, "longitude (degrees_east)": -90.5011978149414}, "type": "Feature"}, {"bbox": [-92.1688003540039, 26.283300399780277, -92.1688003540039, 26.283300399780277], "geometry": {"coordinates": [-92.1688003540039, 26.283300399780277], "type": "Point"}, "id": "294", "properties": {"latitude (degrees_north)": 26.283300399780277, "longitude (degrees_east)": -92.1688003540039}, "type": "Feature"}, {"bbox": [-85.7699966430664, 24.007999420166016, -85.7699966430664, 24.007999420166016], "geometry": {"coordinates": [-85.7699966430664, 24.007999420166016], "type": "Point"}, "id": "295", "properties": {"latitude (degrees_north)": 24.007999420166016, "longitude (degrees_east)": -85.7699966430664}, "type": "Feature"}, {"bbox": [-89.93830108642578, 28.61050033569336, -89.93830108642578, 28.61050033569336], "geometry": {"coordinates": [-89.93830108642578, 28.61050033569336], "type": "Point"}, "id": "296", "properties": {"latitude (degrees_north)": 28.61050033569336, "longitude (degrees_east)": -89.93830108642578}, "type": "Feature"}, {"bbox": [-91.72799682617188, 22.617000579833984, -91.72799682617188, 22.617000579833984], "geometry": {"coordinates": [-91.72799682617188, 22.617000579833984], "type": "Point"}, "id": "297", "properties": {"latitude (degrees_north)": 22.617000579833984, "longitude (degrees_east)": -91.72799682617188}, "type": "Feature"}, {"bbox": [-84.5199966430664, 24.670000076293945, -84.5199966430664, 24.670000076293945], "geometry": {"coordinates": [-84.5199966430664, 24.670000076293945], "type": "Point"}, "id": "298", "properties": {"latitude (degrees_north)": 24.670000076293945, "longitude (degrees_east)": -84.5199966430664}, "type": "Feature"}, {"bbox": [-84.16999816894531, 24.200000762939453, -84.16999816894531, 24.200000762939453], "geometry": {"coordinates": [-84.16999816894531, 24.200000762939453], "type": "Point"}, "id": "299", "properties": {"latitude (degrees_north)": 24.200000762939453, "longitude (degrees_east)": -84.16999816894531}, "type": "Feature"}, {"bbox": [-93.1999969482422, 27.58580017089844, -93.1999969482422, 27.58580017089844], "geometry": {"coordinates": [-93.1999969482422, 27.58580017089844], "type": "Point"}, "id": "300", "properties": {"latitude (degrees_north)": 27.58580017089844, "longitude (degrees_east)": -93.1999969482422}, "type": "Feature"}, {"bbox": [-86.10299682617188, 23.790000915527344, -86.10299682617188, 23.790000915527344], "geometry": {"coordinates": [-86.10299682617188, 23.790000915527344], "type": "Point"}, "id": "301", "properties": {"latitude (degrees_north)": 23.790000915527344, "longitude (degrees_east)": -86.10299682617188}, "type": "Feature"}, {"bbox": [-94.16629791259766, 26.766700744628903, -94.16629791259766, 26.766700744628903], "geometry": {"coordinates": [-94.16629791259766, 26.766700744628903], "type": "Point"}, "id": "302", "properties": {"latitude (degrees_north)": 26.766700744628903, "longitude (degrees_east)": -94.16629791259766}, "type": "Feature"}, {"bbox": [-84.0, 24.586700439453125, -84.0, 24.586700439453125], "geometry": {"coordinates": [-84.0, 24.586700439453125], "type": "Point"}, "id": "303", "properties": {"latitude (degrees_north)": 24.586700439453125, "longitude (degrees_east)": -84.0}, "type": "Feature"}, {"bbox": [-90.4998016357422, 27.661800384521484, -90.4998016357422, 27.661800384521484], "geometry": {"coordinates": [-90.4998016357422, 27.661800384521484], "type": "Point"}, "id": "304", "properties": {"latitude (degrees_north)": 27.661800384521484, "longitude (degrees_east)": -90.4998016357422}, "type": "Feature"}, {"bbox": [-95.28700256347656, 27.761499404907227, -95.28700256347656, 27.761499404907227], "geometry": {"coordinates": [-95.28700256347656, 27.761499404907227], "type": "Point"}, "id": "305", "properties": {"latitude (degrees_north)": 27.761499404907227, "longitude (degrees_east)": -95.28700256347656}, "type": "Feature"}, {"bbox": [-86.36499786376953, 21.66699981689453, -86.36499786376953, 21.66699981689453], "geometry": {"coordinates": [-86.36499786376953, 21.66699981689453], "type": "Point"}, "id": "306", "properties": {"latitude (degrees_north)": 21.66699981689453, "longitude (degrees_east)": -86.36499786376953}, "type": "Feature"}, {"bbox": [-89.9469985961914, 26.290000915527344, -89.9469985961914, 26.290000915527344], "geometry": {"coordinates": [-89.9469985961914, 26.290000915527344], "type": "Point"}, "id": "307", "properties": {"latitude (degrees_north)": 26.290000915527344, "longitude (degrees_east)": -89.9469985961914}, "type": "Feature"}, {"bbox": [-83.33300018310547, 24.190000534057617, -83.33300018310547, 24.190000534057617], "geometry": {"coordinates": [-83.33300018310547, 24.190000534057617], "type": "Point"}, "id": "308", "properties": {"latitude (degrees_north)": 24.190000534057617, "longitude (degrees_east)": -83.33300018310547}, "type": "Feature"}, {"bbox": [-89.6500015258789, 24.700000762939453, -89.6500015258789, 24.700000762939453], "geometry": {"coordinates": [-89.6500015258789, 24.700000762939453], "type": "Point"}, "id": "309", "properties": {"latitude (degrees_north)": 24.700000762939453, "longitude (degrees_east)": -89.6500015258789}, "type": "Feature"}, {"bbox": [-84.96700286865234, 22.902000427246094, -84.96700286865234, 22.902000427246094], "geometry": {"coordinates": [-84.96700286865234, 22.902000427246094], "type": "Point"}, "id": "310", "properties": {"latitude (degrees_north)": 22.902000427246094, "longitude (degrees_east)": -84.96700286865234}, "type": "Feature"}, {"bbox": [-96.26699829101562, 21.0, -96.26699829101562, 21.0], "geometry": {"coordinates": [-96.26699829101562, 21.0], "type": "Point"}, "id": "311", "properties": {"latitude (degrees_north)": 21.0, "longitude (degrees_east)": -96.26699829101562}, "type": "Feature"}, {"bbox": [-88.37300109863281, 28.261999130249023, -88.37300109863281, 28.261999130249023], "geometry": {"coordinates": [-88.37300109863281, 28.261999130249023], "type": "Point"}, "id": "312", "properties": {"latitude (degrees_north)": 28.261999130249023, "longitude (degrees_east)": -88.37300109863281}, "type": "Feature"}, {"bbox": [-93.3000030517578, 22.25, -93.3000030517578, 22.25], "geometry": {"coordinates": [-93.3000030517578, 22.25], "type": "Point"}, "id": "313", "properties": {"latitude (degrees_north)": 22.25, "longitude (degrees_east)": -93.3000030517578}, "type": "Feature"}, {"bbox": [-86.99669647216797, 26.271699905395508, -86.99669647216797, 26.271699905395508], "geometry": {"coordinates": [-86.99669647216797, 26.271699905395508], "type": "Point"}, "id": "314", "properties": {"latitude (degrees_north)": 26.271699905395508, "longitude (degrees_east)": -86.99669647216797}, "type": "Feature"}, {"bbox": [-93.5, 27.3700008392334, -93.5, 27.3700008392334], "geometry": {"coordinates": [-93.5, 27.3700008392334], "type": "Point"}, "id": "315", "properties": {"latitude (degrees_north)": 27.3700008392334, "longitude (degrees_east)": -93.5}, "type": "Feature"}, {"bbox": [-84.63169860839844, 26.152999877929688, -84.63169860839844, 26.152999877929688], "geometry": {"coordinates": [-84.63169860839844, 26.152999877929688], "type": "Point"}, "id": "316", "properties": {"latitude (degrees_north)": 26.152999877929688, "longitude (degrees_east)": -84.63169860839844}, "type": "Feature"}, {"bbox": [-93.00669860839844, 27.25, -93.00669860839844, 27.25], "geometry": {"coordinates": [-93.00669860839844, 27.25], "type": "Point"}, "id": "317", "properties": {"latitude (degrees_north)": 27.25, "longitude (degrees_east)": -93.00669860839844}, "type": "Feature"}, {"bbox": [-95.7852020263672, 27.524999618530277, -95.7852020263672, 27.524999618530277], "geometry": {"coordinates": [-95.7852020263672, 27.524999618530277], "type": "Point"}, "id": "318", "properties": {"latitude (degrees_north)": 27.524999618530277, "longitude (degrees_east)": -95.7852020263672}, "type": "Feature"}, {"bbox": [-96.1050033569336, 27.43079948425293, -96.1050033569336, 27.43079948425293], "geometry": {"coordinates": [-96.1050033569336, 27.43079948425293], "type": "Point"}, "id": "319", "properties": {"latitude (degrees_north)": 27.43079948425293, "longitude (degrees_east)": -96.1050033569336}, "type": "Feature"}, {"bbox": [-93.1750030517578, 24.8700008392334, -93.1750030517578, 24.8700008392334], "geometry": {"coordinates": [-93.1750030517578, 24.8700008392334], "type": "Point"}, "id": "320", "properties": {"latitude (degrees_north)": 24.8700008392334, "longitude (degrees_east)": -93.1750030517578}, "type": "Feature"}, {"bbox": [-86.08609771728516, 29.16670036315918, -86.08609771728516, 29.16670036315918], "geometry": {"coordinates": [-86.08609771728516, 29.16670036315918], "type": "Point"}, "id": "321", "properties": {"latitude (degrees_north)": 29.16670036315918, "longitude (degrees_east)": -86.08609771728516}, "type": "Feature"}, {"bbox": [-95.697998046875, 24.59199905395508, -95.697998046875, 24.59199905395508], "geometry": {"coordinates": [-95.697998046875, 24.59199905395508], "type": "Point"}, "id": "322", "properties": {"latitude (degrees_north)": 24.59199905395508, "longitude (degrees_east)": -95.697998046875}, "type": "Feature"}, {"bbox": [-94.99909973144533, 26.66629981994629, -94.99909973144533, 26.66629981994629], "geometry": {"coordinates": [-94.99909973144533, 26.66629981994629], "type": "Point"}, "id": "323", "properties": {"latitude (degrees_north)": 26.66629981994629, "longitude (degrees_east)": -94.99909973144533}, "type": "Feature"}, {"bbox": [-94.80919647216795, 27.83580017089844, -94.80919647216795, 27.83580017089844], "geometry": {"coordinates": [-94.80919647216795, 27.83580017089844], "type": "Point"}, "id": "324", "properties": {"latitude (degrees_north)": 27.83580017089844, "longitude (degrees_east)": -94.80919647216795}, "type": "Feature"}, {"bbox": [-96.10399627685548, 27.43000030517578, -96.10399627685548, 27.43000030517578], "geometry": {"coordinates": [-96.10399627685548, 27.43000030517578], "type": "Point"}, "id": "325", "properties": {"latitude (degrees_north)": 27.43000030517578, "longitude (degrees_east)": -96.10399627685548}, "type": "Feature"}, {"bbox": [-85.625, 22.299999237060547, -85.625, 22.299999237060547], "geometry": {"coordinates": [-85.625, 22.299999237060547], "type": "Point"}, "id": "326", "properties": {"latitude (degrees_north)": 22.299999237060547, "longitude (degrees_east)": -85.625}, "type": "Feature"}, {"bbox": [-95.49829864501952, 27.038299560546875, -95.49829864501952, 27.038299560546875], "geometry": {"coordinates": [-95.49829864501952, 27.038299560546875], "type": "Point"}, "id": "327", "properties": {"latitude (degrees_north)": 27.038299560546875, "longitude (degrees_east)": -95.49829864501952}, "type": "Feature"}, {"bbox": [-88.36109924316406, 28.91670036315918, -88.36109924316406, 28.91670036315918], "geometry": {"coordinates": [-88.36109924316406, 28.91670036315918], "type": "Point"}, "id": "328", "properties": {"latitude (degrees_north)": 28.91670036315918, "longitude (degrees_east)": -88.36109924316406}, "type": "Feature"}, {"bbox": [-84.3499984741211, 26.030000686645508, -84.3499984741211, 26.030000686645508], "geometry": {"coordinates": [-84.3499984741211, 26.030000686645508], "type": "Point"}, "id": "329", "properties": {"latitude (degrees_north)": 26.030000686645508, "longitude (degrees_east)": -84.3499984741211}, "type": "Feature"}, {"bbox": [-82.3499984741211, 23.32999992370605, -82.3499984741211, 23.32999992370605], "geometry": {"coordinates": [-82.3499984741211, 23.32999992370605], "type": "Point"}, "id": "330", "properties": {"latitude (degrees_north)": 23.32999992370605, "longitude (degrees_east)": -82.3499984741211}, "type": "Feature"}, {"bbox": [-91.70800018310548, 25.649999618530277, -91.70800018310548, 25.649999618530277], "geometry": {"coordinates": [-91.70800018310548, 25.649999618530277], "type": "Point"}, "id": "331", "properties": {"latitude (degrees_north)": 25.649999618530277, "longitude (degrees_east)": -91.70800018310548}, "type": "Feature"}, {"bbox": [-95.11000061035156, 26.774999618530277, -95.11000061035156, 26.774999618530277], "geometry": {"coordinates": [-95.11000061035156, 26.774999618530277], "type": "Point"}, "id": "332", "properties": {"latitude (degrees_north)": 26.774999618530277, "longitude (degrees_east)": -95.11000061035156}, "type": "Feature"}, {"bbox": [-88.69290161132812, 28.688800811767575, -88.69290161132812, 28.688800811767575], "geometry": {"coordinates": [-88.69290161132812, 28.688800811767575], "type": "Point"}, "id": "333", "properties": {"latitude (degrees_north)": 28.688800811767575, "longitude (degrees_east)": -88.69290161132812}, "type": "Feature"}, {"bbox": [-89.99829864501953, 26.9950008392334, -89.99829864501953, 26.9950008392334], "geometry": {"coordinates": [-89.99829864501953, 26.9950008392334], "type": "Point"}, "id": "334", "properties": {"latitude (degrees_north)": 26.9950008392334, "longitude (degrees_east)": -89.99829864501953}, "type": "Feature"}, {"bbox": [-94.93000030517578, 27.32999992370605, -94.93000030517578, 27.32999992370605], "geometry": {"coordinates": [-94.93000030517578, 27.32999992370605], "type": "Point"}, "id": "335", "properties": {"latitude (degrees_north)": 27.32999992370605, "longitude (degrees_east)": -94.93000030517578}, "type": "Feature"}, {"bbox": [-90.16999816894533, 26.924999237060547, -90.16999816894533, 26.924999237060547], "geometry": {"coordinates": [-90.16999816894533, 26.924999237060547], "type": "Point"}, "id": "336", "properties": {"latitude (degrees_north)": 26.924999237060547, "longitude (degrees_east)": -90.16999816894533}, "type": "Feature"}, {"bbox": [-84.56700134277344, 25.78300094604492, -84.56700134277344, 25.78300094604492], "geometry": {"coordinates": [-84.56700134277344, 25.78300094604492], "type": "Point"}, "id": "337", "properties": {"latitude (degrees_north)": 25.78300094604492, "longitude (degrees_east)": -84.56700134277344}, "type": "Feature"}, {"bbox": [-92.99870300292967, 27.65679931640625, -92.99870300292967, 27.65679931640625], "geometry": {"coordinates": [-92.99870300292967, 27.65679931640625], "type": "Point"}, "id": "338", "properties": {"latitude (degrees_north)": 27.65679931640625, "longitude (degrees_east)": -92.99870300292967}, "type": "Feature"}, {"bbox": [-91.99929809570312, 27.548999786376957, -91.99929809570312, 27.548999786376957], "geometry": {"coordinates": [-91.99929809570312, 27.548999786376957], "type": "Point"}, "id": "339", "properties": {"latitude (degrees_north)": 27.548999786376957, "longitude (degrees_east)": -91.99929809570312}, "type": "Feature"}, {"bbox": [-87.74299621582031, 26.75, -87.74299621582031, 26.75], "geometry": {"coordinates": [-87.74299621582031, 26.75], "type": "Point"}, "id": "340", "properties": {"latitude (degrees_north)": 26.75, "longitude (degrees_east)": -87.74299621582031}, "type": "Feature"}, {"bbox": [-94.99929809570312, 26.669099807739254, -94.99929809570312, 26.669099807739254], "geometry": {"coordinates": [-94.99929809570312, 26.669099807739254], "type": "Point"}, "id": "341", "properties": {"latitude (degrees_north)": 26.669099807739254, "longitude (degrees_east)": -94.99929809570312}, "type": "Feature"}, {"bbox": [-87.5999984741211, 24.267000198364254, -87.5999984741211, 24.267000198364254], "geometry": {"coordinates": [-87.5999984741211, 24.267000198364254], "type": "Point"}, "id": "342", "properties": {"latitude (degrees_north)": 24.267000198364254, "longitude (degrees_east)": -87.5999984741211}, "type": "Feature"}, {"bbox": [-90.16799926757812, 24.96699905395508, -90.16799926757812, 24.96699905395508], "geometry": {"coordinates": [-90.16799926757812, 24.96699905395508], "type": "Point"}, "id": "343", "properties": {"latitude (degrees_north)": 24.96699905395508, "longitude (degrees_east)": -90.16799926757812}, "type": "Feature"}, {"bbox": [-96.19270324707033, 26.01020050048828, -96.19270324707033, 26.01020050048828], "geometry": {"coordinates": [-96.19270324707033, 26.01020050048828], "type": "Point"}, "id": "344", "properties": {"latitude (degrees_north)": 26.01020050048828, "longitude (degrees_east)": -96.19270324707033}, "type": "Feature"}, {"bbox": [-83.37000274658203, 24.31999969482422, -83.37000274658203, 24.31999969482422], "geometry": {"coordinates": [-83.37000274658203, 24.31999969482422], "type": "Point"}, "id": "345", "properties": {"latitude (degrees_north)": 24.31999969482422, "longitude (degrees_east)": -83.37000274658203}, "type": "Feature"}, {"bbox": [-85.01699829101562, 23.21699905395508, -85.01699829101562, 23.21699905395508], "geometry": {"coordinates": [-85.01699829101562, 23.21699905395508], "type": "Point"}, "id": "346", "properties": {"latitude (degrees_north)": 23.21699905395508, "longitude (degrees_east)": -85.01699829101562}, "type": "Feature"}, {"bbox": [-86.08300018310547, 21.674999237060547, -86.08300018310547, 21.674999237060547], "geometry": {"coordinates": [-86.08300018310547, 21.674999237060547], "type": "Point"}, "id": "347", "properties": {"latitude (degrees_north)": 21.674999237060547, "longitude (degrees_east)": -86.08300018310547}, "type": "Feature"}, {"bbox": [-88.5, 26.998300552368164, -88.5, 26.998300552368164], "geometry": {"coordinates": [-88.5, 26.998300552368164], "type": "Point"}, "id": "348", "properties": {"latitude (degrees_north)": 26.998300552368164, "longitude (degrees_east)": -88.5}, "type": "Feature"}, {"bbox": [-93.8730010986328, 24.74799919128418, -93.8730010986328, 24.74799919128418], "geometry": {"coordinates": [-93.8730010986328, 24.74799919128418], "type": "Point"}, "id": "349", "properties": {"latitude (degrees_north)": 24.74799919128418, "longitude (degrees_east)": -93.8730010986328}, "type": "Feature"}, {"bbox": [-85.97579956054688, 28.602399826049805, -85.97579956054688, 28.602399826049805], "geometry": {"coordinates": [-85.97579956054688, 28.602399826049805], "type": "Point"}, "id": "350", "properties": {"latitude (degrees_north)": 28.602399826049805, "longitude (degrees_east)": -85.97579956054688}, "type": "Feature"}, {"bbox": [-96.4375, 26.930200576782227, -96.4375, 26.930200576782227], "geometry": {"coordinates": [-96.4375, 26.930200576782227], "type": "Point"}, "id": "351", "properties": {"latitude (degrees_north)": 26.930200576782227, "longitude (degrees_east)": -96.4375}, "type": "Feature"}, {"bbox": [-93.19670104980467, 26.5049991607666, -93.19670104980467, 26.5049991607666], "geometry": {"coordinates": [-93.19670104980467, 26.5049991607666], "type": "Point"}, "id": "352", "properties": {"latitude (degrees_north)": 26.5049991607666, "longitude (degrees_east)": -93.19670104980467}, "type": "Feature"}, {"bbox": [-84.38700103759766, 25.363000869750977, -84.38700103759766, 25.363000869750977], "geometry": {"coordinates": [-84.38700103759766, 25.363000869750977], "type": "Point"}, "id": "353", "properties": {"latitude (degrees_north)": 25.363000869750977, "longitude (degrees_east)": -84.38700103759766}, "type": "Feature"}, {"bbox": [-82.72000122070312, 24.18000030517578, -82.72000122070312, 24.18000030517578], "geometry": {"coordinates": [-82.72000122070312, 24.18000030517578], "type": "Point"}, "id": "354", "properties": {"latitude (degrees_north)": 24.18000030517578, "longitude (degrees_east)": -82.72000122070312}, "type": "Feature"}, {"bbox": [-83.96700286865234, 23.191999435424805, -83.96700286865234, 23.191999435424805], "geometry": {"coordinates": [-83.96700286865234, 23.191999435424805], "type": "Point"}, "id": "355", "properties": {"latitude (degrees_north)": 23.191999435424805, "longitude (degrees_east)": -83.96700286865234}, "type": "Feature"}, {"bbox": [-87.05269622802734, 28.82719993591309, -87.05269622802734, 28.82719993591309], "geometry": {"coordinates": [-87.05269622802734, 28.82719993591309], "type": "Point"}, "id": "356", "properties": {"latitude (degrees_north)": 28.82719993591309, "longitude (degrees_east)": -87.05269622802734}, "type": "Feature"}, {"bbox": [-88.16419982910156, 28.76449966430664, -88.16419982910156, 28.76449966430664], "geometry": {"coordinates": [-88.16419982910156, 28.76449966430664], "type": "Point"}, "id": "357", "properties": {"latitude (degrees_north)": 28.76449966430664, "longitude (degrees_east)": -88.16419982910156}, "type": "Feature"}, {"bbox": [-92.1675033569336, 26.76650047302246, -92.1675033569336, 26.76650047302246], "geometry": {"coordinates": [-92.1675033569336, 26.76650047302246], "type": "Point"}, "id": "358", "properties": {"latitude (degrees_north)": 26.76650047302246, "longitude (degrees_east)": -92.1675033569336}, "type": "Feature"}, {"bbox": [-90.5, 26.998300552368164, -90.5, 26.998300552368164], "geometry": {"coordinates": [-90.5, 26.998300552368164], "type": "Point"}, "id": "359", "properties": {"latitude (degrees_north)": 26.998300552368164, "longitude (degrees_east)": -90.5}, "type": "Feature"}, {"bbox": [-86.05000305175781, 21.767000198364254, -86.05000305175781, 21.767000198364254], "geometry": {"coordinates": [-86.05000305175781, 21.767000198364254], "type": "Point"}, "id": "360", "properties": {"latitude (degrees_north)": 21.767000198364254, "longitude (degrees_east)": -86.05000305175781}, "type": "Feature"}, {"bbox": [-87.91699981689453, 28.617000579833984, -87.91699981689453, 28.617000579833984], "geometry": {"coordinates": [-87.91699981689453, 28.617000579833984], "type": "Point"}, "id": "361", "properties": {"latitude (degrees_north)": 28.617000579833984, "longitude (degrees_east)": -87.91699981689453}, "type": "Feature"}, {"bbox": [-94.1906967163086, 27.800199508666992, -94.1906967163086, 27.800199508666992], "geometry": {"coordinates": [-94.1906967163086, 27.800199508666992], "type": "Point"}, "id": "362", "properties": {"latitude (degrees_north)": 27.800199508666992, "longitude (degrees_east)": -94.1906967163086}, "type": "Feature"}, {"bbox": [-85.9988021850586, 27.0, -85.9988021850586, 27.0], "geometry": {"coordinates": [-85.9988021850586, 27.0], "type": "Point"}, "id": "363", "properties": {"latitude (degrees_north)": 27.0, "longitude (degrees_east)": -85.9988021850586}, "type": "Feature"}, {"bbox": [-95.50050354003906, 25.99970054626465, -95.50050354003906, 25.99970054626465], "geometry": {"coordinates": [-95.50050354003906, 25.99970054626465], "type": "Point"}, "id": "364", "properties": {"latitude (degrees_north)": 25.99970054626465, "longitude (degrees_east)": -95.50050354003906}, "type": "Feature"}, {"bbox": [-85.19999694824219, 22.020000457763672, -85.19999694824219, 22.020000457763672], "geometry": {"coordinates": [-85.19999694824219, 22.020000457763672], "type": "Point"}, "id": "365", "properties": {"latitude (degrees_north)": 22.020000457763672, "longitude (degrees_east)": -85.19999694824219}, "type": "Feature"}, {"bbox": [-89.73519897460938, 28.484699249267575, -89.73519897460938, 28.484699249267575], "geometry": {"coordinates": [-89.73519897460938, 28.484699249267575], "type": "Point"}, "id": "366", "properties": {"latitude (degrees_north)": 28.484699249267575, "longitude (degrees_east)": -89.73519897460938}, "type": "Feature"}, {"bbox": [-94.58830261230467, 27.83530044555664, -94.58830261230467, 27.83530044555664], "geometry": {"coordinates": [-94.58830261230467, 27.83530044555664], "type": "Point"}, "id": "367", "properties": {"latitude (degrees_north)": 27.83530044555664, "longitude (degrees_east)": -94.58830261230467}, "type": "Feature"}, {"bbox": [-85.43299865722656, 23.066999435424805, -85.43299865722656, 23.066999435424805], "geometry": {"coordinates": [-85.43299865722656, 23.066999435424805], "type": "Point"}, "id": "368", "properties": {"latitude (degrees_north)": 23.066999435424805, "longitude (degrees_east)": -85.43299865722656}, "type": "Feature"}, {"bbox": [-90.9666976928711, 26.024999618530277, -90.9666976928711, 26.024999618530277], "geometry": {"coordinates": [-90.9666976928711, 26.024999618530277], "type": "Point"}, "id": "369", "properties": {"latitude (degrees_north)": 26.024999618530277, "longitude (degrees_east)": -90.9666976928711}, "type": "Feature"}, {"bbox": [-86.33000183105469, 29.1299991607666, -86.33000183105469, 29.1299991607666], "geometry": {"coordinates": [-86.33000183105469, 29.1299991607666], "type": "Point"}, "id": "370", "properties": {"latitude (degrees_north)": 29.1299991607666, "longitude (degrees_east)": -86.33000183105469}, "type": "Feature"}, {"bbox": [-90.83450317382812, 26.74850082397461, -90.83450317382812, 26.74850082397461], "geometry": {"coordinates": [-90.83450317382812, 26.74850082397461], "type": "Point"}, "id": "371", "properties": {"latitude (degrees_north)": 26.74850082397461, "longitude (degrees_east)": -90.83450317382812}, "type": "Feature"}, {"bbox": [-92.99919891357422, 27.55680084228516, -92.99919891357422, 27.55680084228516], "geometry": {"coordinates": [-92.99919891357422, 27.55680084228516], "type": "Point"}, "id": "372", "properties": {"latitude (degrees_north)": 27.55680084228516, "longitude (degrees_east)": -92.99919891357422}, "type": "Feature"}, {"bbox": [-96.3499984741211, 24.06999969482422, -96.3499984741211, 24.06999969482422], "geometry": {"coordinates": [-96.3499984741211, 24.06999969482422], "type": "Point"}, "id": "373", "properties": {"latitude (degrees_north)": 24.06999969482422, "longitude (degrees_east)": -96.3499984741211}, "type": "Feature"}, {"bbox": [-86.13300323486328, 27.049999237060547, -86.13300323486328, 27.049999237060547], "geometry": {"coordinates": [-86.13300323486328, 27.049999237060547], "type": "Point"}, "id": "374", "properties": {"latitude (degrees_north)": 27.049999237060547, "longitude (degrees_east)": -86.13300323486328}, "type": "Feature"}, {"bbox": [-85.65799713134766, 21.822999954223636, -85.65799713134766, 21.822999954223636], "geometry": {"coordinates": [-85.65799713134766, 21.822999954223636], "type": "Point"}, "id": "375", "properties": {"latitude (degrees_north)": 21.822999954223636, "longitude (degrees_east)": -85.65799713134766}, "type": "Feature"}, {"bbox": [-85.63300323486328, 22.350000381469727, -85.63300323486328, 22.350000381469727], "geometry": {"coordinates": [-85.63300323486328, 22.350000381469727], "type": "Point"}, "id": "376", "properties": {"latitude (degrees_north)": 22.350000381469727, "longitude (degrees_east)": -85.63300323486328}, "type": "Feature"}, {"bbox": [-84.94999694824219, 25.632999420166016, -84.94999694824219, 25.632999420166016], "geometry": {"coordinates": [-84.94999694824219, 25.632999420166016], "type": "Point"}, "id": "377", "properties": {"latitude (degrees_north)": 25.632999420166016, "longitude (degrees_east)": -84.94999694824219}, "type": "Feature"}, {"bbox": [-92.99870300292967, 27.6564998626709, -92.99870300292967, 27.6564998626709], "geometry": {"coordinates": [-92.99870300292967, 27.6564998626709], "type": "Point"}, "id": "378", "properties": {"latitude (degrees_north)": 27.6564998626709, "longitude (degrees_east)": -92.99870300292967}, "type": "Feature"}, {"bbox": [-94.20369720458984, 27.737499237060547, -94.20369720458984, 27.737499237060547], "geometry": {"coordinates": [-94.20369720458984, 27.737499237060547], "type": "Point"}, "id": "379", "properties": {"latitude (degrees_north)": 27.737499237060547, "longitude (degrees_east)": -94.20369720458984}, "type": "Feature"}, {"bbox": [-94.55799865722656, 19.53300094604492, -94.55799865722656, 19.53300094604492], "geometry": {"coordinates": [-94.55799865722656, 19.53300094604492], "type": "Point"}, "id": "380", "properties": {"latitude (degrees_north)": 19.53300094604492, "longitude (degrees_east)": -94.55799865722656}, "type": "Feature"}, {"bbox": [-95.7113037109375, 27.65049934387207, -95.7113037109375, 27.65049934387207], "geometry": {"coordinates": [-95.7113037109375, 27.65049934387207], "type": "Point"}, "id": "381", "properties": {"latitude (degrees_north)": 27.65049934387207, "longitude (degrees_east)": -95.7113037109375}, "type": "Feature"}, {"bbox": [-82.23799896240234, 23.93000030517578, -82.23799896240234, 23.93000030517578], "geometry": {"coordinates": [-82.23799896240234, 23.93000030517578], "type": "Point"}, "id": "382", "properties": {"latitude (degrees_north)": 23.93000030517578, "longitude (degrees_east)": -82.23799896240234}, "type": "Feature"}, {"bbox": [-90.00299835205078, 26.997800827026367, -90.00299835205078, 26.997800827026367], "geometry": {"coordinates": [-90.00299835205078, 26.997800827026367], "type": "Point"}, "id": "383", "properties": {"latitude (degrees_north)": 26.997800827026367, "longitude (degrees_east)": -90.00299835205078}, "type": "Feature"}, {"bbox": [-93.25669860839844, 27.00830078125, -93.25669860839844, 27.00830078125], "geometry": {"coordinates": [-93.25669860839844, 27.00830078125], "type": "Point"}, "id": "384", "properties": {"latitude (degrees_north)": 27.00830078125, "longitude (degrees_east)": -93.25669860839844}, "type": "Feature"}, {"bbox": [-93.06999969482422, 26.670000076293945, -93.06999969482422, 26.670000076293945], "geometry": {"coordinates": [-93.06999969482422, 26.670000076293945], "type": "Point"}, "id": "385", "properties": {"latitude (degrees_north)": 26.670000076293945, "longitude (degrees_east)": -93.06999969482422}, "type": "Feature"}, {"bbox": [-86.47419738769531, 29.496700286865234, -86.47419738769531, 29.496700286865234], "geometry": {"coordinates": [-86.47419738769531, 29.496700286865234], "type": "Point"}, "id": "386", "properties": {"latitude (degrees_north)": 29.496700286865234, "longitude (degrees_east)": -86.47419738769531}, "type": "Feature"}, {"bbox": [-92.05799865722656, 24.325000762939453, -92.05799865722656, 24.325000762939453], "geometry": {"coordinates": [-92.05799865722656, 24.325000762939453], "type": "Point"}, "id": "387", "properties": {"latitude (degrees_north)": 24.325000762939453, "longitude (degrees_east)": -92.05799865722656}, "type": "Feature"}, {"bbox": [-85.68299865722656, 21.575000762939453, -85.68299865722656, 21.575000762939453], "geometry": {"coordinates": [-85.68299865722656, 21.575000762939453], "type": "Point"}, "id": "388", "properties": {"latitude (degrees_north)": 21.575000762939453, "longitude (degrees_east)": -85.68299865722656}, "type": "Feature"}, {"bbox": [-96.49700164794922, 25.232999801635746, -96.49700164794922, 25.232999801635746], "geometry": {"coordinates": [-96.49700164794922, 25.232999801635746], "type": "Point"}, "id": "389", "properties": {"latitude (degrees_north)": 25.232999801635746, "longitude (degrees_east)": -96.49700164794922}, "type": "Feature"}, {"bbox": [-86.23300170898438, 22.200000762939453, -86.23300170898438, 22.200000762939453], "geometry": {"coordinates": [-86.23300170898438, 22.200000762939453], "type": "Point"}, "id": "390", "properties": {"latitude (degrees_north)": 22.200000762939453, "longitude (degrees_east)": -86.23300170898438}, "type": "Feature"}, {"bbox": [-84.93499755859375, 25.61199951171875, -84.93499755859375, 25.61199951171875], "geometry": {"coordinates": [-84.93499755859375, 25.61199951171875], "type": "Point"}, "id": "391", "properties": {"latitude (degrees_north)": 25.61199951171875, "longitude (degrees_east)": -84.93499755859375}, "type": "Feature"}, {"bbox": [-85.4469985961914, 27.183000564575195, -85.4469985961914, 27.183000564575195], "geometry": {"coordinates": [-85.4469985961914, 27.183000564575195], "type": "Point"}, "id": "392", "properties": {"latitude (degrees_north)": 27.183000564575195, "longitude (degrees_east)": -85.4469985961914}, "type": "Feature"}, {"bbox": [-82.3499984741211, 23.58300018310547, -82.3499984741211, 23.58300018310547], "geometry": {"coordinates": [-82.3499984741211, 23.58300018310547], "type": "Point"}, "id": "393", "properties": {"latitude (degrees_north)": 23.58300018310547, "longitude (degrees_east)": -82.3499984741211}, "type": "Feature"}, {"bbox": [-94.97000122070312, 26.674999237060547, -94.97000122070312, 26.674999237060547], "geometry": {"coordinates": [-94.97000122070312, 26.674999237060547], "type": "Point"}, "id": "394", "properties": {"latitude (degrees_north)": 26.674999237060547, "longitude (degrees_east)": -94.97000122070312}, "type": "Feature"}, {"bbox": [-94.51699829101562, 20.46699905395508, -94.51699829101562, 20.46699905395508], "geometry": {"coordinates": [-94.51699829101562, 20.46699905395508], "type": "Point"}, "id": "395", "properties": {"latitude (degrees_north)": 20.46699905395508, "longitude (degrees_east)": -94.51699829101562}, "type": "Feature"}, {"bbox": [-89.70169830322266, 28.441699981689453, -89.70169830322266, 28.441699981689453], "geometry": {"coordinates": [-89.70169830322266, 28.441699981689453], "type": "Point"}, "id": "396", "properties": {"latitude (degrees_north)": 28.441699981689453, "longitude (degrees_east)": -89.70169830322266}, "type": "Feature"}, {"bbox": [-96.08300018310548, 22.26000022888184, -96.08300018310548, 22.26000022888184], "geometry": {"coordinates": [-96.08300018310548, 22.26000022888184], "type": "Point"}, "id": "397", "properties": {"latitude (degrees_north)": 22.26000022888184, "longitude (degrees_east)": -96.08300018310548}, "type": "Feature"}, {"bbox": [-84.50330352783203, 25.948299407958984, -84.50330352783203, 25.948299407958984], "geometry": {"coordinates": [-84.50330352783203, 25.948299407958984], "type": "Point"}, "id": "398", "properties": {"latitude (degrees_north)": 25.948299407958984, "longitude (degrees_east)": -84.50330352783203}, "type": "Feature"}, {"bbox": [-83.4749984741211, 23.968000411987305, -83.4749984741211, 23.968000411987305], "geometry": {"coordinates": [-83.4749984741211, 23.968000411987305], "type": "Point"}, "id": "399", "properties": {"latitude (degrees_north)": 23.968000411987305, "longitude (degrees_east)": -83.4749984741211}, "type": "Feature"}, {"bbox": [-93.24669647216795, 26.33329963684082, -93.24669647216795, 26.33329963684082], "geometry": {"coordinates": [-93.24669647216795, 26.33329963684082], "type": "Point"}, "id": "400", "properties": {"latitude (degrees_north)": 26.33329963684082, "longitude (degrees_east)": -93.24669647216795}, "type": "Feature"}, {"bbox": [-90.5, 27.861799240112305, -90.5, 27.861799240112305], "geometry": {"coordinates": [-90.5, 27.861799240112305], "type": "Point"}, "id": "401", "properties": {"latitude (degrees_north)": 27.861799240112305, "longitude (degrees_east)": -90.5}, "type": "Feature"}, {"bbox": [-94.4499969482422, 20.0, -94.4499969482422, 20.0], "geometry": {"coordinates": [-94.4499969482422, 20.0], "type": "Point"}, "id": "402", "properties": {"latitude (degrees_north)": 20.0, "longitude (degrees_east)": -94.4499969482422}, "type": "Feature"}, {"bbox": [-96.20970153808594, 27.09970092773437, -96.20970153808594, 27.09970092773437], "geometry": {"coordinates": [-96.20970153808594, 27.09970092773437], "type": "Point"}, "id": "403", "properties": {"latitude (degrees_north)": 27.09970092773437, "longitude (degrees_east)": -96.20970153808594}, "type": "Feature"}, {"bbox": [-84.88960266113281, 27.50029945373535, -84.88960266113281, 27.50029945373535], "geometry": {"coordinates": [-84.88960266113281, 27.50029945373535], "type": "Point"}, "id": "404", "properties": {"latitude (degrees_north)": 27.50029945373535, "longitude (degrees_east)": -84.88960266113281}, "type": "Feature"}, {"bbox": [-93.5832977294922, 26.36000061035156, -93.5832977294922, 26.36000061035156], "geometry": {"coordinates": [-93.5832977294922, 26.36000061035156], "type": "Point"}, "id": "405", "properties": {"latitude (degrees_north)": 26.36000061035156, "longitude (degrees_east)": -93.5832977294922}, "type": "Feature"}, {"bbox": [-93.08000183105467, 24.0, -93.08000183105467, 24.0], "geometry": {"coordinates": [-93.08000183105467, 24.0], "type": "Point"}, "id": "406", "properties": {"latitude (degrees_north)": 24.0, "longitude (degrees_east)": -93.08000183105467}, "type": "Feature"}, {"bbox": [-85.75, 23.96699905395508, -85.75, 23.96699905395508], "geometry": {"coordinates": [-85.75, 23.96699905395508], "type": "Point"}, "id": "407", "properties": {"latitude (degrees_north)": 23.96699905395508, "longitude (degrees_east)": -85.75}, "type": "Feature"}, {"bbox": [-85.71700286865234, 23.482999801635746, -85.71700286865234, 23.482999801635746], "geometry": {"coordinates": [-85.71700286865234, 23.482999801635746], "type": "Point"}, "id": "408", "properties": {"latitude (degrees_north)": 23.482999801635746, "longitude (degrees_east)": -85.71700286865234}, "type": "Feature"}, {"bbox": [-91.27999877929688, 25.96999931335449, -91.27999877929688, 25.96999931335449], "geometry": {"coordinates": [-91.27999877929688, 25.96999931335449], "type": "Point"}, "id": "409", "properties": {"latitude (degrees_north)": 25.96999931335449, "longitude (degrees_east)": -91.27999877929688}, "type": "Feature"}, {"bbox": [-85.06999969482422, 25.6299991607666, -85.06999969482422, 25.6299991607666], "geometry": {"coordinates": [-85.06999969482422, 25.6299991607666], "type": "Point"}, "id": "410", "properties": {"latitude (degrees_north)": 25.6299991607666, "longitude (degrees_east)": -85.06999969482422}, "type": "Feature"}, {"bbox": [-83.31500244140625, 23.517000198364254, -83.31500244140625, 23.517000198364254], "geometry": {"coordinates": [-83.31500244140625, 23.517000198364254], "type": "Point"}, "id": "411", "properties": {"latitude (degrees_north)": 23.517000198364254, "longitude (degrees_east)": -83.31500244140625}, "type": "Feature"}, {"bbox": [-88.668701171875, 25.6692008972168, -88.668701171875, 25.6692008972168], "geometry": {"coordinates": [-88.668701171875, 25.6692008972168], "type": "Point"}, "id": "412", "properties": {"latitude (degrees_north)": 25.6692008972168, "longitude (degrees_east)": -88.668701171875}, "type": "Feature"}, {"bbox": [-90.33000183105467, 23.96999931335449, -90.33000183105467, 23.96999931335449], "geometry": {"coordinates": [-90.33000183105467, 23.96999931335449], "type": "Point"}, "id": "413", "properties": {"latitude (degrees_north)": 23.96999931335449, "longitude (degrees_east)": -90.33000183105467}, "type": "Feature"}, {"bbox": [-92.78170013427734, 24.91670036315918, -92.78170013427734, 24.91670036315918], "geometry": {"coordinates": [-92.78170013427734, 24.91670036315918], "type": "Point"}, "id": "414", "properties": {"latitude (degrees_north)": 24.91670036315918, "longitude (degrees_east)": -92.78170013427734}, "type": "Feature"}, {"bbox": [-94.4020004272461, 19.6299991607666, -94.4020004272461, 19.6299991607666], "geometry": {"coordinates": [-94.4020004272461, 19.6299991607666], "type": "Point"}, "id": "415", "properties": {"latitude (degrees_north)": 19.6299991607666, "longitude (degrees_east)": -94.4020004272461}, "type": "Feature"}, {"bbox": [-88.0, 26.50169944763184, -88.0, 26.50169944763184], "geometry": {"coordinates": [-88.0, 26.50169944763184], "type": "Point"}, "id": "416", "properties": {"latitude (degrees_north)": 26.50169944763184, "longitude (degrees_east)": -88.0}, "type": "Feature"}, {"bbox": [-87.0, 29.0, -87.0, 29.0], "geometry": {"coordinates": [-87.0, 29.0], "type": "Point"}, "id": "417", "properties": {"latitude (degrees_north)": 29.0, "longitude (degrees_east)": -87.0}, "type": "Feature"}, {"bbox": [-88.8499984741211, 28.5, -88.8499984741211, 28.5], "geometry": {"coordinates": [-88.8499984741211, 28.5], "type": "Point"}, "id": "418", "properties": {"latitude (degrees_north)": 28.5, "longitude (degrees_east)": -88.8499984741211}, "type": "Feature"}, {"bbox": [-85.98999786376953, 21.683000564575195, -85.98999786376953, 21.683000564575195], "geometry": {"coordinates": [-85.98999786376953, 21.683000564575195], "type": "Point"}, "id": "419", "properties": {"latitude (degrees_north)": 21.683000564575195, "longitude (degrees_east)": -85.98999786376953}, "type": "Feature"}, {"bbox": [-94.0, 22.0, -94.0, 22.0], "geometry": {"coordinates": [-94.0, 22.0], "type": "Point"}, "id": "420", "properties": {"latitude (degrees_north)": 22.0, "longitude (degrees_east)": -94.0}, "type": "Feature"}, {"bbox": [-87.0, 23.530000686645508, -87.0, 23.530000686645508], "geometry": {"coordinates": [-87.0, 23.530000686645508], "type": "Point"}, "id": "421", "properties": {"latitude (degrees_north)": 23.530000686645508, "longitude (degrees_east)": -87.0}, "type": "Feature"}, {"bbox": [-95.07369995117188, 27.71660041809082, -95.07369995117188, 27.71660041809082], "geometry": {"coordinates": [-95.07369995117188, 27.71660041809082], "type": "Point"}, "id": "422", "properties": {"latitude (degrees_north)": 27.71660041809082, "longitude (degrees_east)": -95.07369995117188}, "type": "Feature"}, {"bbox": [-87.2300033569336, 28.850000381469727, -87.2300033569336, 28.850000381469727], "geometry": {"coordinates": [-87.2300033569336, 28.850000381469727], "type": "Point"}, "id": "423", "properties": {"latitude (degrees_north)": 28.850000381469727, "longitude (degrees_east)": -87.2300033569336}, "type": "Feature"}, {"bbox": [-85.22000122070312, 26.45800018310547, -85.22000122070312, 26.45800018310547], "geometry": {"coordinates": [-85.22000122070312, 26.45800018310547], "type": "Point"}, "id": "424", "properties": {"latitude (degrees_north)": 26.45800018310547, "longitude (degrees_east)": -85.22000122070312}, "type": "Feature"}, {"bbox": [-94.16680145263672, 26.28420066833496, -94.16680145263672, 26.28420066833496], "geometry": {"coordinates": [-94.16680145263672, 26.28420066833496], "type": "Point"}, "id": "425", "properties": {"latitude (degrees_north)": 26.28420066833496, "longitude (degrees_east)": -94.16680145263672}, "type": "Feature"}, {"bbox": [-93.24199676513672, 25.027999877929688, -93.24199676513672, 25.027999877929688], "geometry": {"coordinates": [-93.24199676513672, 25.027999877929688], "type": "Point"}, "id": "426", "properties": {"latitude (degrees_north)": 25.027999877929688, "longitude (degrees_east)": -93.24199676513672}, "type": "Feature"}, {"bbox": [-95.98200225830078, 27.071800231933597, -95.98200225830078, 27.071800231933597], "geometry": {"coordinates": [-95.98200225830078, 27.071800231933597], "type": "Point"}, "id": "427", "properties": {"latitude (degrees_north)": 27.071800231933597, "longitude (degrees_east)": -95.98200225830078}, "type": "Feature"}, {"bbox": [-95.62200164794922, 27.38999938964844, -95.62200164794922, 27.38999938964844], "geometry": {"coordinates": [-95.62200164794922, 27.38999938964844], "type": "Point"}, "id": "428", "properties": {"latitude (degrees_north)": 27.38999938964844, "longitude (degrees_east)": -95.62200164794922}, "type": "Feature"}, {"bbox": [-86.12000274658203, 25.075000762939453, -86.12000274658203, 25.075000762939453], "geometry": {"coordinates": [-86.12000274658203, 25.075000762939453], "type": "Point"}, "id": "429", "properties": {"latitude (degrees_north)": 25.075000762939453, "longitude (degrees_east)": -86.12000274658203}, "type": "Feature"}, {"bbox": [-96.83000183105467, 21.0, -96.83000183105467, 21.0], "geometry": {"coordinates": [-96.83000183105467, 21.0], "type": "Point"}, "id": "430", "properties": {"latitude (degrees_north)": 21.0, "longitude (degrees_east)": -96.83000183105467}, "type": "Feature"}, {"bbox": [-83.72000122070312, 23.420000076293945, -83.72000122070312, 23.420000076293945], "geometry": {"coordinates": [-83.72000122070312, 23.420000076293945], "type": "Point"}, "id": "431", "properties": {"latitude (degrees_north)": 23.420000076293945, "longitude (degrees_east)": -83.72000122070312}, "type": "Feature"}, {"bbox": [-92.86699676513672, 19.493000030517575, -92.86699676513672, 19.493000030517575], "geometry": {"coordinates": [-92.86699676513672, 19.493000030517575], "type": "Point"}, "id": "432", "properties": {"latitude (degrees_north)": 19.493000030517575, "longitude (degrees_east)": -92.86699676513672}, "type": "Feature"}, {"bbox": [-85.55329895019531, 27.66670036315918, -85.55329895019531, 27.66670036315918], "geometry": {"coordinates": [-85.55329895019531, 27.66670036315918], "type": "Point"}, "id": "433", "properties": {"latitude (degrees_north)": 27.66670036315918, "longitude (degrees_east)": -85.55329895019531}, "type": "Feature"}, {"bbox": [-91.99829864501952, 27.74880027770996, -91.99829864501952, 27.74880027770996], "geometry": {"coordinates": [-91.99829864501952, 27.74880027770996], "type": "Point"}, "id": "434", "properties": {"latitude (degrees_north)": 27.74880027770996, "longitude (degrees_east)": -91.99829864501952}, "type": "Feature"}, {"bbox": [-86.40299987792969, 21.81800079345703, -86.40299987792969, 21.81800079345703], "geometry": {"coordinates": [-86.40299987792969, 21.81800079345703], "type": "Point"}, "id": "435", "properties": {"latitude (degrees_north)": 21.81800079345703, "longitude (degrees_east)": -86.40299987792969}, "type": "Feature"}, {"bbox": [-94.9792022705078, 27.239500045776367, -94.9792022705078, 27.239500045776367], "geometry": {"coordinates": [-94.9792022705078, 27.239500045776367], "type": "Point"}, "id": "436", "properties": {"latitude (degrees_north)": 27.239500045776367, "longitude (degrees_east)": -94.9792022705078}, "type": "Feature"}, {"bbox": [-94.95800018310548, 27.604999542236328, -94.95800018310548, 27.604999542236328], "geometry": {"coordinates": [-94.95800018310548, 27.604999542236328], "type": "Point"}, "id": "437", "properties": {"latitude (degrees_north)": 27.604999542236328, "longitude (degrees_east)": -94.95800018310548}, "type": "Feature"}, {"bbox": [-82.5199966430664, 23.670000076293945, -82.5199966430664, 23.670000076293945], "geometry": {"coordinates": [-82.5199966430664, 23.670000076293945], "type": "Point"}, "id": "438", "properties": {"latitude (degrees_north)": 23.670000076293945, "longitude (degrees_east)": -82.5199966430664}, "type": "Feature"}, {"bbox": [-93.00279998779295, 27.75469970703125, -93.00279998779295, 27.75469970703125], "geometry": {"coordinates": [-93.00279998779295, 27.75469970703125], "type": "Point"}, "id": "439", "properties": {"latitude (degrees_north)": 27.75469970703125, "longitude (degrees_east)": -93.00279998779295}, "type": "Feature"}, {"bbox": [-91.4980010986328, 24.49799919128418, -91.4980010986328, 24.49799919128418], "geometry": {"coordinates": [-91.4980010986328, 24.49799919128418], "type": "Point"}, "id": "440", "properties": {"latitude (degrees_north)": 24.49799919128418, "longitude (degrees_east)": -91.4980010986328}, "type": "Feature"}, {"bbox": [-93.00279998779295, 27.75429916381836, -93.00279998779295, 27.75429916381836], "geometry": {"coordinates": [-93.00279998779295, 27.75429916381836], "type": "Point"}, "id": "441", "properties": {"latitude (degrees_north)": 27.75429916381836, "longitude (degrees_east)": -93.00279998779295}, "type": "Feature"}, {"bbox": [-86.93299865722656, 28.163000106811523, -86.93299865722656, 28.163000106811523], "geometry": {"coordinates": [-86.93299865722656, 28.163000106811523], "type": "Point"}, "id": "442", "properties": {"latitude (degrees_north)": 28.163000106811523, "longitude (degrees_east)": -86.93299865722656}, "type": "Feature"}, {"bbox": [-84.37169647216797, 25.5, -84.37169647216797, 25.5], "geometry": {"coordinates": [-84.37169647216797, 25.5], "type": "Point"}, "id": "443", "properties": {"latitude (degrees_north)": 25.5, "longitude (degrees_east)": -84.37169647216797}, "type": "Feature"}, {"bbox": [-87.19450378417969, 28.65999984741211, -87.19450378417969, 28.65999984741211], "geometry": {"coordinates": [-87.19450378417969, 28.65999984741211], "type": "Point"}, "id": "444", "properties": {"latitude (degrees_north)": 28.65999984741211, "longitude (degrees_east)": -87.19450378417969}, "type": "Feature"}, {"bbox": [-94.0, 21.0, -94.0, 21.0], "geometry": {"coordinates": [-94.0, 21.0], "type": "Point"}, "id": "445", "properties": {"latitude (degrees_north)": 21.0, "longitude (degrees_east)": -94.0}, "type": "Feature"}, {"bbox": [-89.93000030517578, 27.799999237060547, -89.93000030517578, 27.799999237060547], "geometry": {"coordinates": [-89.93000030517578, 27.799999237060547], "type": "Point"}, "id": "446", "properties": {"latitude (degrees_north)": 27.799999237060547, "longitude (degrees_east)": -89.93000030517578}, "type": "Feature"}, {"bbox": [-92.25469970703124, 27.612199783325195, -92.25469970703124, 27.612199783325195], "geometry": {"coordinates": [-92.25469970703124, 27.612199783325195], "type": "Point"}, "id": "447", "properties": {"latitude (degrees_north)": 27.612199783325195, "longitude (degrees_east)": -92.25469970703124}, "type": "Feature"}, {"bbox": [-96.61299896240234, 20.920000076293945, -96.61299896240234, 20.920000076293945], "geometry": {"coordinates": [-96.61299896240234, 20.920000076293945], "type": "Point"}, "id": "448", "properties": {"latitude (degrees_north)": 20.920000076293945, "longitude (degrees_east)": -96.61299896240234}, "type": "Feature"}, {"bbox": [-93.76699829101562, 26.24799919128418, -93.76699829101562, 26.24799919128418], "geometry": {"coordinates": [-93.76699829101562, 26.24799919128418], "type": "Point"}, "id": "449", "properties": {"latitude (degrees_north)": 26.24799919128418, "longitude (degrees_east)": -93.76699829101562}, "type": "Feature"}, {"bbox": [-96.14469909667967, 27.229799270629883, -96.14469909667967, 27.229799270629883], "geometry": {"coordinates": [-96.14469909667967, 27.229799270629883], "type": "Point"}, "id": "450", "properties": {"latitude (degrees_north)": 27.229799270629883, "longitude (degrees_east)": -96.14469909667967}, "type": "Feature"}, {"bbox": [-89.42500305175781, 28.04800033569336, -89.42500305175781, 28.04800033569336], "geometry": {"coordinates": [-89.42500305175781, 28.04800033569336], "type": "Point"}, "id": "451", "properties": {"latitude (degrees_north)": 28.04800033569336, "longitude (degrees_east)": -89.42500305175781}, "type": "Feature"}, {"bbox": [-88.77999877929688, 27.3700008392334, -88.77999877929688, 27.3700008392334], "geometry": {"coordinates": [-88.77999877929688, 27.3700008392334], "type": "Point"}, "id": "452", "properties": {"latitude (degrees_north)": 27.3700008392334, "longitude (degrees_east)": -88.77999877929688}, "type": "Feature"}, {"bbox": [-95.05950164794922, 27.809200286865234, -95.05950164794922, 27.809200286865234], "geometry": {"coordinates": [-95.05950164794922, 27.809200286865234], "type": "Point"}, "id": "453", "properties": {"latitude (degrees_north)": 27.809200286865234, "longitude (degrees_east)": -95.05950164794922}, "type": "Feature"}, {"bbox": [-122.5165, 33.5172, -122.5165, 33.5172], "geometry": {"coordinates": [-122.5165, 33.5172], "type": "Point"}, "id": "454", "properties": {"latitude (degrees_north)": 33.5172, "longitude (degrees_east)": -122.5165}, "type": "Feature"}, {"bbox": [-120.8015, 34.3043, -120.8015, 34.3043], "geometry": {"coordinates": [-120.8015, 34.3043], "type": "Point"}, "id": "455", "properties": {"latitude (degrees_north)": 34.3043, "longitude (degrees_east)": -120.8015}, "type": "Feature"}, {"bbox": [-69.5823, 43.9341, -69.5823, 43.9341], "geometry": {"coordinates": [-69.5823, 43.9341], "type": "Point"}, "id": "456", "properties": {"latitude (degrees_north)": 43.9341, "longitude (degrees_east)": -69.5823}, "type": "Feature"}, {"bbox": [-70.5655, 42.5232, -70.5655, 42.5232], "geometry": {"coordinates": [-70.5655, 42.5232], "type": "Point"}, "id": "457", "properties": {"latitude (degrees_north)": 42.5232, "longitude (degrees_east)": -70.5655}, "type": "Feature"}, {"bbox": [-70.56555, 42.524334, -70.56555, 42.524334], "geometry": {"coordinates": [-70.56555, 42.524334], "type": "Point"}, "id": "458", "properties": {"latitude (degrees_north)": 42.524334, "longitude (degrees_east)": -70.56555}, "type": "Feature"}, {"bbox": [-70.56592, 42.523537, -70.56592, 42.523537], "geometry": {"coordinates": [-70.56592, 42.523537], "type": "Point"}, "id": "459", "properties": {"latitude (degrees_north)": 42.523537, "longitude (degrees_east)": -70.56592}, "type": "Feature"}, {"bbox": [-83.31683333333334, 27.265166666666666, -83.31683333333334, 27.265166666666666], "geometry": {"coordinates": [-83.31683333333334, 27.265166666666666], "type": "Point"}, "id": "460", "properties": {"latitude (degrees_north)": 27.265166666666666, "longitude (degrees_east)": -83.31683333333334}, "type": "Feature"}, {"bbox": [-82.84483333333333, 27.458666666666662, -82.84483333333333, 27.458666666666662], "geometry": {"coordinates": [-82.84483333333333, 27.458666666666662], "type": "Point"}, "id": "461", "properties": {"latitude (degrees_north)": 27.458666666666662, "longitude (degrees_east)": -82.84483333333333}, "type": "Feature"}, {"bbox": [-83.03316666666667, 27.381666666666668, -83.03316666666667, 27.381666666666668], "geometry": {"coordinates": [-83.03316666666667, 27.381666666666668], "type": "Point"}, "id": "462", "properties": {"latitude (degrees_north)": 27.381666666666668, "longitude (degrees_east)": -83.03316666666667}, "type": "Feature"}, {"bbox": [-83.48833333333333, 27.619666666666667, -83.48833333333333, 27.619666666666667], "geometry": {"coordinates": [-83.48833333333333, 27.619666666666667], "type": "Point"}, "id": "463", "properties": {"latitude (degrees_north)": 27.619666666666667, "longitude (degrees_east)": -83.48833333333333}, "type": "Feature"}, {"bbox": [-81.4875, 25.3505, -81.4875, 25.3505], "geometry": {"coordinates": [-81.4875, 25.3505], "type": "Point"}, "id": "464", "properties": {"latitude (degrees_north)": 25.3505, "longitude (degrees_east)": -81.4875}, "type": "Feature"}, {"bbox": [-83.50533333333334, 27.193666666666665, -83.50533333333334, 27.193666666666665], "geometry": {"coordinates": [-83.50533333333334, 27.193666666666665], "type": "Point"}, "id": "465", "properties": {"latitude (degrees_north)": 27.193666666666665, "longitude (degrees_east)": -83.50533333333334}, "type": "Feature"}, {"bbox": [-83.4105, 27.22733333333333, -83.4105, 27.22733333333333], "geometry": {"coordinates": [-83.4105, 27.22733333333333], "type": "Point"}, "id": "466", "properties": {"latitude (degrees_north)": 27.22733333333333, "longitude (degrees_east)": -83.4105}, "type": "Feature"}, {"bbox": [-82.21133333333333, 26.18733333333333, -82.21133333333333, 26.18733333333333], "geometry": {"coordinates": [-82.21133333333333, 26.18733333333333], "type": "Point"}, "id": "467", "properties": {"latitude (degrees_north)": 26.18733333333333, "longitude (degrees_east)": -82.21133333333333}, "type": "Feature"}, {"bbox": [-81.65533333333333, 25.352166666666665, -81.65533333333333, 25.352166666666665], "geometry": {"coordinates": [-81.65533333333333, 25.352166666666665], "type": "Point"}, "id": "468", "properties": {"latitude (degrees_north)": 25.352166666666665, "longitude (degrees_east)": -81.65533333333333}, "type": "Feature"}, {"bbox": [-82.04116666666667, 26.343833333333333, -82.04116666666667, 26.343833333333333], "geometry": {"coordinates": [-82.04116666666667, 26.343833333333333], "type": "Point"}, "id": "469", "properties": {"latitude (degrees_north)": 26.343833333333333, "longitude (degrees_east)": -82.04116666666667}, "type": "Feature"}, {"bbox": [-81.3345, 25.3515, -81.3345, 25.3515], "geometry": {"coordinates": [-81.3345, 25.3515], "type": "Point"}, "id": "470", "properties": {"latitude (degrees_north)": 25.3515, "longitude (degrees_east)": -81.3345}, "type": "Feature"}, {"bbox": [-81.95666666666666, 26.42333333333333, -81.95666666666666, 26.42333333333333], "geometry": {"coordinates": [-81.95666666666666, 26.42333333333333], "type": "Point"}, "id": "471", "properties": {"latitude (degrees_north)": 26.42333333333333, "longitude (degrees_east)": -81.95666666666666}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", - " geo_json_587ed7b86b32a3b40b69fa7f96df86fc.bindTooltip(\n", + " geo_json_e896b0bdd13728f539e421a7af0bc5aa.bindTooltip(\n", " function(layer){\n", " let div = L.DomUtil.create('div');\n", " \n", @@ -2299,10 +1968,10 @@ "</html>\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen>" ], "text/plain": [ - "" + "" ] }, - "execution_count": 23, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } @@ -2316,11 +1985,20 @@ ] }, { - "cell_type": "code", - "execution_count": null, + "cell_type": "markdown", "metadata": {}, - "outputs": [], - "source": [] + "source": [ + "We hope this example demonstrates the flexibility of direct requests to the IOOS Data Catalog CKAN server and all the possibilities it provides. In this notebook we:\n", + "\n", + "* Search the IOOS Data Catalog CKAN API with keywords.\n", + "* Found datasets matching our specified criteria.\n", + "* Collected all the data from each of the datasets matching our criteria.\n", + "* Created a simple map of the distribution of datasets which match our criteria.\n", + "\n", + "To take this one step further, since we collected all the data from each of the datasets (in the dictionary `dict_out_final`) a user could integrate all of the oxygen observations together and start to build a comprehensive dataset. \n", + "\n", + "Additionally, a user could modify the CKAN query to search for terms outside of the CF standard names to potentially gather more datasets. " + ] } ], "metadata": {