Skip to content

Commit

Permalink
minor formatting updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rupesh2 committed Oct 7, 2024
1 parent 0f5ec2d commit 522b113
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 22 deletions.
4 changes: 0 additions & 4 deletions book/CoC.md

This file was deleted.

8 changes: 1 addition & 7 deletions book/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@
format: jb-book
root: intro
parts:
- caption: Details
numbered: false
chapters:
- file: CoC
- file: logistics
#
- caption: Tutorials - Day 1
numbered: false
chapters:
Expand All @@ -23,7 +17,7 @@ parts:
- file: tutorials/prism_turbidity/prism_turbidity.ipynb
- file: tutorials/EMIT/EMIT_intro.ipynb
- file: tutorials/Geopython/Geopython.ipynb
- file: Machine_Learning/Invasive_AVIRIS.ipynb
- file: tutorials/Machine_Learning/Invasive_AVIRIS.ipynb
#
- caption: Tutorials - Day 3
numbered: false
Expand Down
2 changes: 0 additions & 2 deletions book/logistics.md

This file was deleted.

18 changes: 9 additions & 9 deletions book/tutorials/EMIT/EMIT_intro.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"tags": []
},
"source": [
"#### Load libraries"
"### Load libraries"
]
},
{
Expand Down Expand Up @@ -66,7 +66,7 @@
"id": "92d11e01-4c1e-41d3-aea3-cfd55c2db496",
"metadata": {},
"source": [
"#### Authenticate with NASA Earthdata portal\n",
"### Authenticate with NASA Earthdata portal\n",
"Earthaccess is a python library to search, download or stream NASA Earth science data. You will also need an account on NASA's Earthdata data portal\n",
"https://search.earthdata.nasa.gov/"
]
Expand All @@ -89,7 +89,7 @@
"id": "f8ec817d-0213-47d0-8aaa-a114d0c47cb3",
"metadata": {},
"source": [
"##### Accessing data on AWS S3\n",
"### Accessing data on AWS S3\n",
"\n",
"The emit files are stored on Amazon S3 object storage. We will access these directly without needing to download them as we can stream s3 files. Also, because we are using xarray with dask and our data is stored in a chunked file format `netcdf`, we only need to stream the chunks we are currently working on and not the entire file at once.\n",
" \n",
Expand All @@ -101,7 +101,7 @@
"id": "b0f6d101-f47d-4ec9-b708-675953cc9aac",
"metadata": {},
"source": [
"##### Finding data"
"### Finding data"
]
},
{
Expand Down Expand Up @@ -155,7 +155,7 @@
"tags": []
},
"source": [
"#### Open the datset"
"### Open the datset"
]
},
{
Expand Down Expand Up @@ -247,7 +247,7 @@
"id": "6ac2589c-343c-4575-9a01-ad02c1f2d229",
"metadata": {},
"source": [
"#### Load the mask\n",
"### Load the mask\n",
"The EMIT data is composed of 3 files, the actual data, a mask that tells us about various quality issues with the data, and the reflectance uncertainties (we will ignore the uncertainty for now). We can selecting which quality filter (mask) to use. Here we used the aggregate filter - the sum of all filters to be very strict about what data we include. The `quality_mask` function provided by the EMIT team reads and processes this file for us."
]
},
Expand All @@ -271,7 +271,7 @@
"tags": []
},
"source": [
"#### Load the data\n",
"### Load the data\n",
"As you saw the raw data is the unprojected, unmasked focal plane array and does not include much metadata for us to tell what is going on. The `emit_array` function provided by the EMIT team reads and processes this file for us. It can orthorectify the data and apply the mask too if we want.\n",
"\n",
"> Warning: in order to orthorectify the data, the entire array must be loaded into memory. This means you need a decent amount of RAM or the operation will fail. I found that 16GB is the minimum needed.\n"
Expand Down Expand Up @@ -334,7 +334,7 @@
"id": "8426974c-4377-486a-bb71-b94f45cef95a",
"metadata": {},
"source": [
"#### Quick plot"
"### Quick plot"
]
},
{
Expand Down Expand Up @@ -428,7 +428,7 @@
"tags": []
},
"source": [
"#### Extract points"
"### Extract points"
]
},
{
Expand Down

0 comments on commit 522b113

Please sign in to comment.