-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update notebook for most recent version of icepyx
- Loading branch information
1 parent
ada4d62
commit 7bd9ce9
Showing
1 changed file
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,13 +119,11 @@ | |
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"print(region_a.dataset)\n", | ||
"print(region_a.dates)\n", | ||
"print(region_a.start_time)\n", | ||
"print(region_a.end_time)\n", | ||
"print(region_a.product)\n", | ||
"print(region_a.temporal)\n", | ||
"print(region_a.cycles)\n", | ||
"print(region_a.tracks)\n", | ||
"print(region_a.dataset_version)" | ||
"print(region_a.product_version)" | ||
] | ||
}, | ||
{ | ||
|
@@ -142,7 +140,7 @@ | |
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"region_a.dataset_summary_info()\n", | ||
"region_a.product_summary_info()\n", | ||
"print(region_a.latest_version())" | ||
] | ||
}, | ||
|
@@ -251,9 +249,7 @@ | |
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"earthdata_uid = 'icepyx_devteam'\n", | ||
"email = '[email protected]'\n", | ||
"region_a.earthdata_login(earthdata_uid, email)" | ||
"region_a.earthdata_login()" | ||
] | ||
}, | ||
{ | ||
|
@@ -305,7 +301,7 @@ | |
"Now that we have downloaded our data, we can move on to our analysis workflow.\n", | ||
"\n", | ||
"A few important notes:\n", | ||
"1. Ultimately, we plan to generalize these types of reader functions and wrap them into a new class object within `icepyx`. That development is in the planning stages (this would be a great way to get involved, whether or not you've already written/used your own readers). In the meantime, they're included as hard-coded functions in this section of the notebook.\n", | ||
"1. icepyx has a generic read-in module that is our recommended method for opening data. At the time of the workshop this tutorial was created for, that module had not yet been written.\n", | ||
"2. These functions were modified from those originally written by Bidya Yadav." | ||
] | ||
}, | ||
|
@@ -477,7 +473,7 @@ | |
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"display_name": "Python 3 (ipykernel)", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
|
@@ -491,7 +487,7 @@ | |
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.9.2" | ||
"version": "3.10.10" | ||
} | ||
}, | ||
"nbformat": 4, | ||
|