Skip to content

Commit

Permalink
Merge pull request #32 from ICESAT-2HackWeek/data_access_tutorial
Browse files Browse the repository at this point in the history
Data access tutorial
  • Loading branch information
scottyhq authored Aug 20, 2024
2 parents d3b7056 + 626130e commit 8867ae2
Show file tree
Hide file tree
Showing 10 changed files with 4,182 additions and 0 deletions.
2 changes: 2 additions & 0 deletions book/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ execute:
- "cloud-computing/04-cloud-optimized-icesat2.ipynb"
- "cloud-computing/atl08_parquet_files/atl08_parquet.ipynb"
- "machine-learning/point_cloud_classifier.ipynb"
- "**/ICESat2_Data_Access_Tutorial.ipynb"
allow_errors: false
# Per-cell notebook execution limit (seconds)
timeout: 300
Expand All @@ -65,6 +66,7 @@ bibtex_bibfiles:
- references.bib
sphinx:
config:
suppress_warnings: ["mystnb.unknown_mime_type", "myst.header"]
bibtex_reference_style: author_year # or label, super, \supercite
nb_custom_formats:
.py:
Expand Down
1 change: 1 addition & 0 deletions book/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ parts:
options:
- titlesonly: true
- file: tutorials/mental-health/index
- file: tutorials/data_access/ICESat2_Data_Access_Tutorial.ipynb
- file: tutorials/machine-learning/point_cloud_classifier.ipynb
- caption: Projects
chapters:
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added book/tutorials/data_access/ATL08_structure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4,110 changes: 4,110 additions & 0 deletions book/tutorials/data_access/ICESat2_Data_Access_Tutorial.ipynb

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions book/tutorials/data_access/bathy.geojson
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"coordinates": [
[
[
-68.80001736899322,
11.70759464799086
],
[
-69.1593319790718,
10.374804972253756
],
[
-67.92596176951622,
9.625429564227446
],
[
-66.42565581750506,
9.76466749570632
],
[
-65.23791765011893,
9.399002308465171
],
[
-63.831048355901004,
9.721657746002407
],
[
-64.1799384347106,
10.719643913787522
],
[
-65.30456184337527,
10.503748826656846
],
[
-65.90084250057265,
10.893343064600728
],
[
-67.75968956558057,
10.799288582826165
],
[
-68.80001736899322,
11.70759464799086
]
]
],
"type": "Polygon"
}
}
]
}
8 changes: 8 additions & 0 deletions book/tutorials/data_access/grandmesa.geojson
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "FeatureCollection",
"name": "grand_mesa_poly",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -108.311682565537666, 39.137576462129438 ], [ -108.341156683252237, 39.037589876133246 ], [ -108.287868638779599, 38.89051431295789 ], [ -108.207729687800509, 38.823205529198098 ], [ -108.074601643110313, 38.847513782586297 ], [ -107.985605104949812, 38.943991201101703 ], [ -107.728398587557521, 39.015109302306328 ], [ -107.787241424909936, 39.195630349659986 ], [ -108.049394800987542, 39.139504663354245 ], [ -108.172870009708575, 39.159200663961158 ], [ -108.311682565537666, 39.137576462129438 ] ] ] } }
]
}
Binary file added book/tutorials/data_access/icepyx_logo_medium.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions book/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ Below you'll find a table keeping track of all tutorials presented at this event
| [Cloud Computing](./cloud-computing/00-goals-and-outline.ipynb) | Cloud Computing Tutorial | n/a | Not recorded |
| [Notebooks to Packages](./nb-to-package/index.md) | All about Python classes to packages | n/a | Not recorded |
| [ICESat-2 point cloud classification](./machine-learning/point_cloud_classifier.ipynb) | Machine Learning, PyTorch | ATL07 | Not recorded |
| [ICESat-2 Data Access](./data_access/ICESat2_Data_Access_Tutorial.ipynb) | ICESat-2 Data Access: icepyx, sliderule, h5coro | ATL03, ATL06, ATL08 | Not recorded |

0 comments on commit 8867ae2

Please sign in to comment.