diff --git a/code/process.json b/code/process.json index 89a2234..8386d9e 100644 --- a/code/process.json +++ b/code/process.json @@ -18,7 +18,7 @@ "id" : "nlsntt", "name" : "retrieve_sst", "description" : null, - "code" : "from earth_data_utils import *\n\ndef search_and_get_sst():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=sst_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-02\"),\n )\n print(\"found results: \", results)\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='lon', y='lat')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_sst.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_and_get_sst()) as ds:\n subset = ds[\"analysed_sst\"].sel(lat=slice(27, 37), \n lon=slice(-70,-50)).std('time')\n plot_subset(subset)\n\n", + "code" : "from earth_data_utils import *\n\ndef search_and_get_sst():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=sst_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-02\"),\n )\n print(\"found results: \", results)\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='lon', y='lat')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_sst.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_and_get_sst()) as ds:\n subset = ds[\"analysed_sst\"].sel(lat=slice(37, 47), \n lon=slice(-70,-50)).std('time')\n plot_subset(subset)\n\n", "lang" : "python", "owner" : "111111", "confidential" : "FALSE" @@ -26,7 +26,7 @@ "id" : "e57twj", "name" : "retrieve_ssh", "description" : null, - "code" : "from earth_data_utils import *\n\ndef search_ssh():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=ssh_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-09-30\"),\n )\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='Longitude', y='Latitude')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_ssh.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_ssh()) as ds:\n subset = ds[\"SLA\"].sel(Latitude=slice(-79, 79), \n Longitude=slice(100,300)).std('Time')\n plot_subset(subset)\n", + "code" : "from earth_data_utils import *\n\ndef search_ssh():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=ssh_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-10\"),\n )\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='Longitude', y='Latitude')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_ssh.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_ssh()) as ds:\n subset = ds[\"SLA\"].sel(Latitude=slice(-79, 79), \n Longitude=slice(100,300)).std('Time')\n plot_subset(subset)\n", "lang" : "python", "owner" : "111111", "confidential" : "FALSE" diff --git a/code/retrieve_ssh.py b/code/retrieve_ssh.py index 6926c36..2b42171 100644 --- a/code/retrieve_ssh.py +++ b/code/retrieve_ssh.py @@ -5,7 +5,7 @@ def search_ssh(): results = earthaccess.search_data( short_name=ssh_short_name, cloud_hosted=True, - temporal=("2021-07-01", "2021-09-30"), + temporal=("2021-07-01", "2021-07-10"), ) return results diff --git a/code/retrieve_sst.py b/code/retrieve_sst.py index 18c0940..c4a9b55 100644 --- a/code/retrieve_sst.py +++ b/code/retrieve_sst.py @@ -20,7 +20,7 @@ def plot_subset(ds_subset): print(f"new figure is saved to {save_file_path}") with get_dataset(search_and_get_sst()) as ds: - subset = ds["analysed_sst"].sel(lat=slice(27, 37), + subset = ds["analysed_sst"].sel(lat=slice(37, 47), lon=slice(-70,-50)).std('time') plot_subset(subset) diff --git a/history/162ixstrl3bsdf9j70.json b/history/162ixstrl3bsdf9j70.json new file mode 100644 index 0000000..f8478bb --- /dev/null +++ b/history/162ixstrl3bsdf9j70.json @@ -0,0 +1,31 @@ +[{ + "history_id" : "nhr50q04rrw", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1689696551601, + "history_end_time" : 1689696551601, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "hyv9gaa5wim", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1689696552572, + "history_end_time" : 1689696555111, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "ov5ekas83m8", + "history_input" : "from earth_data_utils import *\n\ndef search_ssh():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=ssh_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-09-30\"),\n )\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='Longitude', y='Latitude')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_ssh.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_ssh()) as ds:\n subset = ds[\"SLA\"].sel(Latitude=slice(-79, 79), \n Longitude=slice(100,300)).std('Time')\n plot_subset(subset)\n", + "history_output" : "Running", + "history_begin_time" : 1689696556673, + "history_end_time" : 1689698118710, + "history_notes" : null, + "history_process" : "e57twj", + "host_id" : "100001", + "indicator" : "Stopped" +}] diff --git a/history/2tx27uhgkta7q42zb8.json b/history/2tx27uhgkta7q42zb8.json new file mode 100644 index 0000000..81cf4fa --- /dev/null +++ b/history/2tx27uhgkta7q42zb8.json @@ -0,0 +1,31 @@ +[{ + "history_id" : "216bmx5xhy2", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1689696449676, + "history_end_time" : 1689696449676, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "uccss755fub", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1689696450637, + "history_end_time" : 1689696453753, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "1l25o5p4a5y", + "history_input" : "from earth_data_utils import *\n\ndef search_ssh():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=ssh_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-09-30\"),\n )\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='Longitude', y='Latitude')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_ssh.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_ssh()) as ds:\n subset = ds[\"SLA\"].sel(Latitude=slice(-79, 79), \n Longitude=slice(100,300)).std('Time')\n plot_subset(subset)\n", + "history_output" : "Running", + "history_begin_time" : 1689696455732, + "history_end_time" : 1689698120373, + "history_notes" : null, + "history_process" : "e57twj", + "host_id" : "100001", + "indicator" : "Stopped" +}] diff --git a/history/87l4m1mv71pfvqcb44.json b/history/87l4m1mv71pfvqcb44.json new file mode 100644 index 0000000..5b55e25 --- /dev/null +++ b/history/87l4m1mv71pfvqcb44.json @@ -0,0 +1,31 @@ +[{ + "history_id" : "0zwfe5bp5k5", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1689685467555, + "history_end_time" : 1689685467555, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "d34pcmod5b1", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\n", + "history_begin_time" : 1689685468522, + "history_end_time" : 1689685478949, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "aifpbscthcp", + "history_input" : "from earth_data_utils import *\n\ndef search_ssh():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=ssh_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-09-30\"),\n )\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='Longitude', y='Latitude')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_ssh.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_ssh()) as ds:\n subset = ds[\"SLA\"].sel(Latitude=slice(-79, 79), \n Longitude=slice(100,300)).std('Time')\n plot_subset(subset)\n", + "history_output" : "Running", + "history_begin_time" : 1689685480658, + "history_end_time" : 1689698121006, + "history_notes" : null, + "history_process" : "e57twj", + "host_id" : "100001", + "indicator" : "Stopped" +}] diff --git a/history/b70aawjt8z4isn1dwy.json b/history/b70aawjt8z4isn1dwy.json index e8b23cd..e4c2625 100644 --- a/history/b70aawjt8z4isn1dwy.json +++ b/history/b70aawjt8z4isn1dwy.json @@ -18,6 +18,16 @@ "history_process" : "ru79i2", "host_id" : "100001", "indicator" : "Done" +},{ + "history_id" : "uf7ngwa1cnl", + "history_input" : "from earth_data_utils import *\n\ndef search_and_get_sst():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=sst_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-02\"),\n )\n print(\"found results: \", results)\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='lon', y='lat')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_sst.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_and_get_sst()) as ds:\n subset = ds[\"analysed_sst\"].sel(lat=slice(27, 37), \n lon=slice(-70,-50)).std('time')\n plot_subset(subset)\n\n", + "history_output" : "You're now authenticated with NASA Earthdata Login\nUsing token with expiration date: 08/19/2023\nUsing .netrc file for EDL\nGranules found: 2\nfound results: [Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-01T21:00:00.000Z', 'BeginningDateTime': '2021-06-30T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210701090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc'], Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-02T21:00:00.000Z', 'BeginningDateTime': '2021-07-01T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210702090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc']]\n Opening 2 granules, approx size: 0.0 GB\nQUEUEING TASKS | : 0%| | 0/2 [00:00=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.1.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1687333007149, + "history_end_time" : 1687333009580, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "e1ce5zjdm3y", + "history_input" : "from earth_data_utils import *\n\ndef search_and_get_sst():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=sst_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-02\"),\n )\n print(\"found results: \", results)\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='lon', y='lat')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_sst.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_and_get_sst()) as ds:\n subset = ds[\"analysed_sst\"].sel(lat=slice(37, 47), \n lon=slice(-70,-50)).std('time')\n plot_subset(subset)\n\n", + "history_output" : "You're now authenticated with NASA Earthdata Login\nUsing token with expiration date: 08/19/2023\nUsing .netrc file for EDL\nGranules found: 2\nfound results: [Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-01T21:00:00.000Z', 'BeginningDateTime': '2021-06-30T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210701090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc'], Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-02T21:00:00.000Z', 'BeginningDateTime': '2021-07-01T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210702090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc']]\n Opening 2 granules, approx size: 0.0 GB\nQUEUEING TASKS | : 0%| | 0/2 [00:00=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.1.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1687332748063, + "history_end_time" : 1687332750421, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "afz7j3dzavr", + "history_input" : "from earth_data_utils import *\n\ndef search_and_get_sst():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=sst_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-02\"),\n )\n print(\"found results: \", results)\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='lon', y='lat')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_{str(uuid.uuid4())}.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_and_get_sst()) as ds:\n subset = ds[\"analysed_sst\"].sel(lat=slice(37, 47), \n lon=slice(-70,-50)).std('time')\n plot_subset(subset)\n\n", + "history_output" : "You're now authenticated with NASA Earthdata Login\nUsing token with expiration date: 08/19/2023\nUsing .netrc file for EDL\nGranules found: 2\nfound results: [Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-01T21:00:00.000Z', 'BeginningDateTime': '2021-06-30T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210701090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc'], Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-02T21:00:00.000Z', 'BeginningDateTime': '2021-07-01T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210702090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc']]\n Opening 2 granules, approx size: 0.0 GB\nQUEUEING TASKS | : 0%| | 0/2 [00:00=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.1.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1687374881399, + "history_end_time" : 1687374883868, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "0snzg8m33qw", + "history_input" : "from earth_data_utils import *\n\ndef search_and_get_sst():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=sst_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-02\"),\n )\n print(\"found results: \", results)\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='lon', y='lat')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_sst.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_and_get_sst()) as ds:\n subset = ds[\"analysed_sst\"].sel(lat=slice(37, 47), \n lon=slice(-70,-50)).std('time')\n plot_subset(subset)\n\n", + "history_output" : "You're now authenticated with NASA Earthdata Login\nUsing token with expiration date: 08/19/2023\nUsing .netrc file for EDL\nGranules found: 2\nfound results: [Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-01T21:00:00.000Z', 'BeginningDateTime': '2021-06-30T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210701090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc'], Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-02T21:00:00.000Z', 'BeginningDateTime': '2021-07-01T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210702090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc']]\n Opening 2 granules, approx size: 0.0 GB\nQUEUEING TASKS | : 0%| | 0/2 [00:00=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\n", + "history_begin_time" : 1689685330350, + "history_end_time" : 1689685341756, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "n9gvsxpbqmk", + "history_input" : "from earth_data_utils import *\n\ndef search_ssh():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=ssh_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-09-30\"),\n )\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='Longitude', y='Latitude')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_ssh.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_ssh()) as ds:\n subset = ds[\"SLA\"].sel(Latitude=slice(-79, 79), \n Longitude=slice(100,300)).std('Time')\n plot_subset(subset)\n", + "history_output" : "Running", + "history_begin_time" : 1689685343510, + "history_end_time" : 1689698122123, + "history_notes" : null, + "history_process" : "e57twj", + "host_id" : "100001", + "indicator" : "Stopped" +}] diff --git a/history/process_e57twj.json b/history/process_e57twj.json index ad16030..3f3f0f3 100644 --- a/history/process_e57twj.json +++ b/history/process_e57twj.json @@ -1,4 +1,114 @@ [{ + "history_id" : "wVGsXabxJJyJ", + "history_input" : "from earth_data_utils import *\n\ndef search_ssh():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=ssh_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-10\"),\n )\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='Longitude', y='Latitude')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_ssh.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_ssh()) as ds:\n subset = ds[\"SLA\"].sel(Latitude=slice(-79, 79), \n Longitude=slice(100,300)).std('Time')\n plot_subset(subset)\n", + "history_output" : "WARNING:param.notebook_extension: Holoviews bokeh extension could not be imported, it raised the following exception: ValueError('ClassSelector parameter None value must be an instance of (function, tuple), not .')\nWARNING:param.notebook_extension: bokeh backend hook failed with following exception: ClassSelector parameter None value must be an instance of (function, tuple), not .\nYou're now authenticated with NASA Earthdata Login\nUsing token with expiration date: 08/19/2023\nUsing .netrc file for EDL\nGranules found: 2\n Opening 2 granules, approx size: 0.0 GB\nQUEUEING TASKS | : 0%| | 0/2 [00:00.')\nWARNING:param.notebook_extension: bokeh backend hook failed with following exception: ClassSelector parameter None value must be an instance of (function, tuple), not .\nYou're now authenticated with NASA Earthdata Login\nUsing token with expiration date: 08/19/2023\nUsing .netrc file for EDL\nGranules found: 0\nThe granules list is empty, moving on...\nTraceback (most recent call last):\n File \"/Users/joe/gw-workspace/fDYhNY1FyVTN/retrieve_ssh.py\", line 21, in \n with get_dataset(search_ssh()) as ds:\n File \"/Users/joe/gw-workspace/fDYhNY1FyVTN/earth_data_utils.py\", line 57, in get_dataset\n return xr.open_mfdataset(earthaccess.open(results))\n File \"/Users/l21-n02609-comm/opt/anaconda3/lib/python3.9/site-packages/xarray/backends/api.py\", line 870, in open_mfdataset\n paths = [os.fspath(p) if isinstance(p, os.PathLike) else p for p in paths]\nTypeError: 'NoneType' object is not iterable\n", + "history_begin_time" : 1689697345278, + "history_end_time" : 1689697351126, + "history_notes" : null, + "history_process" : "e57twj", + "host_id" : null, + "indicator" : "Failed" +},{ + "history_id" : "yPcU6ynL3Fr8", + "history_input" : "from earth_data_utils import *\n\ndef search_ssh():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=ssh_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-10\"),\n )\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='Longitude', y='Latitude')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_ssh.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_ssh()) as ds:\n subset = ds[\"SLA\"].sel(Latitude=slice(-79, 79), \n Longitude=slice(100,300)).std('Time')\n plot_subset(subset)\n", + "history_output" : "WARNING:param.notebook_extension: Holoviews bokeh extension could not be imported, it raised the following exception: ValueError('ClassSelector parameter None value must be an instance of (function, tuple), not .')\nWARNING:param.notebook_extension: bokeh backend hook failed with following exception: ClassSelector parameter None value must be an instance of (function, tuple), not .\nYou're now authenticated with NASA Earthdata Login\nUsing token with expiration date: 08/19/2023\nUsing .netrc file for EDL\nGranules found: 2\n Opening 2 granules, approx size: 0.0 GB\nQUEUEING TASKS | : 0%| | 0/2 [00:00.')\nWARNING:param.notebook_extension: bokeh backend hook failed with following exception: ClassSelector parameter None value must be an instance of (function, tuple), not .\nYou're now authenticated with NASA Earthdata Login\nUsing token with expiration date: 08/19/2023\nUsing .netrc file for EDL\nGranules found: 2\nfound results: [Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-01T21:00:00.000Z', 'BeginningDateTime': '2021-06-30T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210701090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc'], Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-02T21:00:00.000Z', 'BeginningDateTime': '2021-07-01T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210702090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc']]\n Opening 2 granules, approx size: 0.0 GB\nQUEUEING TASKS | : 0%| | 0/2 [00:00=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1689696552572, + "history_end_time" : 1689696555111, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "uccss755fub", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1689696450637, + "history_end_time" : 1689696453753, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "d34pcmod5b1", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\n", + "history_begin_time" : 1689685468522, + "history_end_time" : 1689685478949, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "ylv13ufut4k", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\n", + "history_begin_time" : 1689685330350, + "history_end_time" : 1689685341756, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "gjq7xzdhlr9", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.1.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1687374881399, + "history_end_time" : 1687374883868, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "arr51wopzbw", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.1.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1687333007149, + "history_end_time" : 1687333009580, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "fx19g9buif9", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.1.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1687332748063, + "history_end_time" : 1687332750421, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "zg6v1hy042k", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.1.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1687332559000, + "history_end_time" : 1687332561412, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ "history_id" : "zzcxtngjbdu", "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.1.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", diff --git a/history/process_wttkvt.json b/history/process_wttkvt.json index dcf0895..0648fea 100644 --- a/history/process_wttkvt.json +++ b/history/process_wttkvt.json @@ -1,4 +1,84 @@ [{ + "history_id" : "nhr50q04rrw", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1689696551601, + "history_end_time" : 1689696551601, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "216bmx5xhy2", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1689696449676, + "history_end_time" : 1689696449676, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "0zwfe5bp5k5", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1689685467555, + "history_end_time" : 1689685467555, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "lytq9tp26cj", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1689685329382, + "history_end_time" : 1689685329382, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "i4djyouvq15", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1687374880443, + "history_end_time" : 1687374880443, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "fwu7qad3kq6", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1687333006202, + "history_end_time" : 1687333006202, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "1c5sjmcrgnj", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1687332747096, + "history_end_time" : 1687332747096, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "zle2vcmqtkh", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1687332558038, + "history_end_time" : 1687332558038, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ "history_id" : "617pj1d8nis", "history_input" : "No code saved", "history_output" : "Skipped", diff --git a/history/svx32gpq6x3xmqkorm.json b/history/svx32gpq6x3xmqkorm.json new file mode 100644 index 0000000..7a2b092 --- /dev/null +++ b/history/svx32gpq6x3xmqkorm.json @@ -0,0 +1,41 @@ +[{ + "history_id" : "zle2vcmqtkh", + "history_input" : "No code saved", + "history_output" : "Skipped", + "history_begin_time" : 1687332558038, + "history_end_time" : 1687332558038, + "history_notes" : null, + "history_process" : "wttkvt", + "host_id" : "100001", + "indicator" : "Skipped" +},{ + "history_id" : "zg6v1hy042k", + "history_input" : "#!/bin/bash\npip3 install geopandas earthaccess xarray harmony-py s3fs\n", + "history_output" : "Defaulting to user installation because normal site-packages is not writeable\nRequirement already satisfied: geopandas in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.13.2)\nRequirement already satisfied: earthaccess in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.5.2)\nRequirement already satisfied: xarray in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.5.0)\nRequirement already satisfied: harmony-py in /Users/joe/Library/Python/3.9/lib/python/site-packages (0.4.9)\nRequirement already satisfied: s3fs in /Users/joe/Library/Python/3.9/lib/python/site-packages (2023.6.0)\nRequirement already satisfied: pandas>=1.1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.2)\nRequirement already satisfied: fiona>=1.8.19 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (1.9.4.post1)\nRequirement already satisfied: shapely>=1.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (2.0.1)\nRequirement already satisfied: packaging in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (21.3)\nRequirement already satisfied: pyproj>=3.0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from geopandas) (3.6.0)\nRequirement already satisfied: requests<3.0.0,>=2.26 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2.28.2)\nRequirement already satisfied: python-cmr>=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.7.0)\nRequirement already satisfied: multimethod>=1.8 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.9.1)\nRequirement already satisfied: tinynetrc<2.0.0,>=1.3.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (1.3.1)\nRequirement already satisfied: fsspec>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (2023.6.0)\nRequirement already satisfied: pqdm>=0.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from earthaccess) (0.2.0)\nRequirement already satisfied: numpy>=1.21 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from xarray) (1.24.3)\nRequirement already satisfied: curlify~=2.2.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.2.1)\nRequirement already satisfied: python-dotenv~=0.20.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.20.0)\nRequirement already satisfied: sphinxcontrib-napoleon~=0.7 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (0.7)\nRequirement already satisfied: progressbar2~=3.55.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (3.55.0)\nRequirement already satisfied: python-dateutil~=2.8.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from harmony-py) (2.8.2)\nRequirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (3.8.4)\nRequirement already satisfied: aiobotocore~=2.5.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from s3fs) (2.5.0)\nRequirement already satisfied: aioitertools>=0.5.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (0.11.0)\nRequirement already satisfied: botocore<1.29.77,>=1.29.76 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.29.76)\nRequirement already satisfied: wrapt>=1.10.10 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiobotocore~=2.5.0->s3fs) (1.15.0)\nRequirement already satisfied: multidict<7.0,>=4.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (6.0.4)\nRequirement already satisfied: yarl<2.0,>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.9.2)\nRequirement already satisfied: charset-normalizer<4.0,>=2.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (3.1.0)\nRequirement already satisfied: frozenlist>=1.1.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.3)\nRequirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (4.0.2)\nRequirement already satisfied: attrs>=17.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (23.1.0)\nRequirement already satisfied: aiosignal>=1.1.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->s3fs) (1.3.1)\nRequirement already satisfied: typing_extensions>=4.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from aioitertools>=0.5.1->aiobotocore~=2.5.0->s3fs) (4.6.3)\nRequirement already satisfied: urllib3<1.27,>=1.25.4 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.26.15)\nRequirement already satisfied: jmespath<2.0.0,>=0.7.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from botocore<1.29.77,>=1.29.76->aiobotocore~=2.5.0->s3fs) (1.0.1)\nRequirement already satisfied: certifi in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (2022.12.7)\nRequirement already satisfied: six in /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (from fiona>=1.8.19->geopandas) (1.15.0)\nRequirement already satisfied: importlib-metadata in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (6.6.0)\nRequirement already satisfied: click~=8.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (8.1.3)\nRequirement already satisfied: cligj>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (0.7.2)\nRequirement already satisfied: click-plugins>=1.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from fiona>=1.8.19->geopandas) (1.1.1)\nRequirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from packaging->geopandas) (3.0.9)\nRequirement already satisfied: pytz>=2020.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tzdata>=2022.1 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pandas>=1.1.0->geopandas) (2023.3)\nRequirement already satisfied: tqdm in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (4.65.0)\nRequirement already satisfied: bounded-pool-executor in /Users/joe/Library/Python/3.9/lib/python/site-packages (from pqdm>=0.1->earthaccess) (0.0.3)\nRequirement already satisfied: python-utils>=2.3.0 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from progressbar2~=3.55.0->harmony-py) (3.6.1)\nRequirement already satisfied: idna<4,>=2.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from requests<3.0.0,>=2.26->earthaccess) (3.4)\nRequirement already satisfied: pockets>=0.3 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from sphinxcontrib-napoleon~=0.7->harmony-py) (0.9.1)\nRequirement already satisfied: zipp>=0.5 in /Users/joe/Library/Python/3.9/lib/python/site-packages (from importlib-metadata->fiona>=1.8.19->geopandas) (3.15.0)\nWARNING: You are using pip version 21.2.4; however, version 23.1.2 is available.\nYou should consider upgrading via the '/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install --upgrade pip' command.\n", + "history_begin_time" : 1687332559000, + "history_end_time" : 1687332561412, + "history_notes" : null, + "history_process" : "ru79i2", + "host_id" : "100001", + "indicator" : "Done" +},{ + "history_id" : "fk604fwceda", + "history_input" : "from earth_data_utils import *\n\ndef search_and_get_sst():\n auth_earthaccess()\n results = earthaccess.search_data(\n short_name=sst_short_name,\n cloud_hosted=True,\n temporal=(\"2021-07-01\", \"2021-07-02\"),\n )\n print(\"found results: \", results)\n return results\n\ndef plot_subset(ds_subset):\n ds_subset.plot(figsize=(12,6), x='lon', y='lat')\n home_dir = os.path.expanduser('~')\n \n file_name = f\"geoweaver_plot_sst.png\"\n save_file_path = os.path.join(home_dir, file_name)\n plt.savefig(save_file_path)\n print(f\"new figure is saved to {save_file_path}\")\n\nwith get_dataset(search_and_get_sst()) as ds:\n subset = ds[\"analysed_sst\"].sel(lat=slice(27, 37), \n lon=slice(-70,-50)).std('time')\n plot_subset(subset)\n\n", + "history_output" : "You're now authenticated with NASA Earthdata Login\nUsing token with expiration date: 08/19/2023\nUsing .netrc file for EDL\nGranules found: 2\nfound results: [Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-01T21:00:00.000Z', 'BeginningDateTime': '2021-06-30T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210701090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc'], Collection: {'Version': '4.1', 'ShortName': 'MUR-JPL-L4-GLOB-v4.1'}\nSpatial coverage: {'HorizontalSpatialDomain': {'Geometry': {'BoundingRectangles': [{'WestBoundingCoordinate': -180, 'SouthBoundingCoordinate': -90, 'EastBoundingCoordinate': 180, 'NorthBoundingCoordinate': 90}]}}}\nTemporal coverage: {'RangeDateTime': {'EndingDateTime': '2021-07-02T21:00:00.000Z', 'BeginningDateTime': '2021-07-01T21:00:00.000Z'}}\nSize(MB): 0\nData: ['https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/MUR-JPL-L4-GLOB-v4.1/20210702090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc']]\n Opening 2 granules, approx size: 0.0 GB\nQUEUEING TASKS | : 0%| | 0/2 [00:00