From c2ee44021435ba6eb8a49bb462327af879bf47fc Mon Sep 17 00:00:00 2001 From: Emma Marshall <55526386+e-marshall@users.noreply.github.com> Date: Sun, 4 Feb 2024 12:59:25 -0700 Subject: [PATCH] notebook edits and fix refs page --- PC_RTC.ipynb | 1 - References.md | 37 ++++++++++++++++++++++++++++++++++++- asf_inspect.ipynb | 5 ++--- software.ipynb | 2 ++ 4 files changed, 40 insertions(+), 5 deletions(-) diff --git a/PC_RTC.ipynb b/PC_RTC.ipynb index d39da17..08aed6f 100644 --- a/PC_RTC.ipynb +++ b/PC_RTC.ipynb @@ -54,7 +54,6 @@ "import rich.table\n", "import planetary_computer\n", "from pystac_client import Client\n", - "#import cartopy\n", "from shapely.geometry import Polygon\n", "import rioxarray as rio\n", "import pystac\n", diff --git a/References.md b/References.md index 5dde070..22f37a3 100644 --- a/References.md +++ b/References.md @@ -1,3 +1,38 @@ # References -Under construction \ No newline at end of file +The material in this tutorial was developed with the aid of many online resources. + +## Datasets +- [Alaska Satellite Facility Sentinel-1 On-Demand](https://search.asf.alaska.edu/#/?topic=onDemand) +- [Micrsoft Planetary Computer Sentinel-1 RTC data](https://planetarycomputer.microsoft.com/dataset/sentinel-1-rtc) +- +## Synthetic Aperture Radar resources: +- [The SAR Handbook](https://ntrs.nasa.gov/api/citations/20190002563/downloads/20190002563.pdf) +- [ASF Sentinel-1 RTC Product Guide](https://hyp3-docs.asf.alaska.edu/guides/rtc_product_guide/) + +## Other tutorials +- [Planetary Computer Customizable RTC](https://planetarycomputer.microsoft.com/docs/tutorials/customizable-rtc-sentinel1/) + +## Open-Source Software +- [Xarray](https://docs.xarray.dev/en/stable/) +- [Rioxarray](https://corteva.github.io/rioxarray/stable/) +- [Pandas](https://pandas.pydata.org/) +- [Geopandas](https://geopandas.org/en/stable/) +- [Stackstac](https://stackstac.readthedocs.io/en/latest/) +- [PySTAC](https://pystac.readthedocs.io/en/stable/) +- [Dask](https://www.dask.org/) +- [Shapely](https://shapely.readthedocs.io/en/stable/manual.html) +- [os](https://docs.python.org/3/library/os.html) +- [tempfile](https://docs.python.org/3/library/tempfile.html) +- [requests](https://pypi.org/project/requests/) +- [markdown](https://pypi.org/project/Markdown/) +- [pathlib](https://docs.python.org/3/library/pathlib.html) +- [planetary computer](https://pypi.org/project/planetary-computer/) +- [adlfs](https://pypi.org/project/adlfs/) +- [PySTAC Client](https://pystac-client.readthedocs.io/en/stable/) +- [matplotlib](https://matplotlib.org/) +- [datetime](https://docs.python.org/3/library/datetime.html) +- [numpy](https://numpy.org/) +- [rich.table](https://rich.readthedocs.io/en/stable/tables.html) +- [time](https://docs.python.org/3/library/time.html) +- [glob](https://docs.python.org/3/library/glob.html) diff --git a/asf_inspect.ipynb b/asf_inspect.ipynb index 15204ea..c91f562 100644 --- a/asf_inspect.ipynb +++ b/asf_inspect.ipynb @@ -46,7 +46,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 38, "id": "221f4a3f-1adc-4f61-979a-94ec5de93f38", "metadata": {}, "outputs": [], @@ -61,8 +61,7 @@ "import pandas as pd\n", "import dask\n", "\n", - "from pathlib import Path\n", - "#from intake.source.utils import reverse_format\n" + "from pathlib import Path" ] }, { diff --git a/software.ipynb b/software.ipynb index 8956c42..6068ab9 100644 --- a/software.ipynb +++ b/software.ipynb @@ -58,6 +58,8 @@ "import numpy as np\n", "import pandas as pd\n", "import rich.table\n", + "import time\n", + "import glob\n", "\n", "from IPython.display import Image" ]