Skip to content

Commit

Permalink
Tutorials - Add Aviris NG data to book TOC
Browse files Browse the repository at this point in the history
  • Loading branch information
jomey committed Jul 22, 2024
1 parent fbf6fe8 commit c7bbb84
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 10 deletions.
2 changes: 1 addition & 1 deletion book/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ execute:
# NOTE: 'cache' to use jupyter-cache, or 'force' to run all
execute_notebooks: 'force'
exclude_patterns:
- "**/geospatial-advanced.ipynb"
- "tutorials/albedo/aviris-ng-data.ipynb"
allow_errors: false
# Per-cell notebook execution limit (seconds)
timeout: 300
Expand Down
4 changes: 4 additions & 0 deletions book/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ parts:
- file: tutorials/index
sections:
- file: tutorials/example/tutorial-notebook
- file: tutorials/albedo/index
title: Albedo
sections:
- file: tutorials/albedo/aviris-ng-data
- caption: Projects
chapters:
- file: projects/list_of_projects
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
"id": "suffering-union",
"metadata": {},
"source": [
"# Lessons learned working with the NSIDC dataset,\n",
"# __\"SnowEx21 Senator Beck Basin and Grand Mesa, CO AVIRIS-NG Surface Spectral Reflectance\"__\n",
"# AVIRIS-NG Surface Spectral Reflectance\n",
"Lessons learned working with the NSIDC dataset. \n",
"__Dataset__: SnowEx 2021; Senator Beck Basin and Grand Mesa \n",
"__Tutorial Author__: [Brent Wilder](https://github.com/brentwilder)\n",
"\n",
"```{admonition} Learning Objectives\n",
"- Understand how this data is structured\n",
Expand Down Expand Up @@ -93,21 +95,25 @@
"id": "5b99d916-deb8-4af0-9fce-1e38e5c18d87",
"metadata": {},
"source": [
"## Using python package, `spectral`, to open data\n"
"## Using python package, `spectral`, to open data\n",
"\n",
"```{important}\n",
"Update the paths below to your local environment\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": 38,
"execution_count": null,
"id": "equipped-qualification",
"metadata": {},
"outputs": [],
"source": [
"# INSERT YOUR PATHS HERE\n",
"path_to_aviris = '/Users/brent/Documents/Albedo/AVIRIS/ang20210429t191025_rfl_v2z1'\n",
"path_to_aviris_hdr = '/Users/brent/Documents/Albedo/AVIRIS/ang20210429t191025_rfl_v2z1.hdr'\n",
"path_to_terrain = '/Users/brent/Documents/Albedo/AVIRIS/ang20210429t191025_rfl_v2z1_obs_ort'\n",
"path_to_terrain_hdr = '/Users/brent/Documents/Albedo/AVIRIS/ang20210429t191025_rfl_v2z1_obs_ort.hdr'"
"path_to_aviris = '/data/Albedo/AVIRIS/ang20210429t191025_rfl_v2z1'\n",
"path_to_aviris_hdr = '/data/Albedo/AVIRIS/ang20210429t191025_rfl_v2z1.hdr'\n",
"path_to_terrain = '/data/Albedo/AVIRIS/ang20210429t191025_rfl_v2z1_obs_ort'\n",
"path_to_terrain_hdr = '/data/Albedo/AVIRIS/ang20210429t191025_rfl_v2z1_obs_ort.hdr'"
]
},
{
Expand Down Expand Up @@ -142,7 +148,9 @@
"cell_type": "code",
"execution_count": 44,
"id": "ed222d1f",
"metadata": {},
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
Expand Down
4 changes: 4 additions & 0 deletions book/tutorials/albedo/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# SnowEx Albedo data

```{tableofcontents}
```

0 comments on commit c7bbb84

Please sign in to comment.