forked from ESIPFed/open-data-education
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ESIPFed#3 from amanda-tan/master
Update everything
- Loading branch information
Showing
16 changed files
with
5,379 additions
and
63 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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<!-- #region --> | ||
# Open Science Education | ||
|
||
[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/ESIPFed/open-data-education/master?urlpath=lab) | ||
[![Build Status](https://travis-ci.org/dask/dask-examples.svg?branch=master)](https://travis-ci.org/ESIPFed/open-data-education) | ||
|
||
## Introduction | ||
|
||
The goal of this tutorial is to introduce users to working with NASA satellite imagery and utilizing Amazon Web Services' Open Data program. Through a series of modules, the user will develop an end-to-end workflow for working with satellite imagery, learn about geoscientific Python tools, and utilize a parallel computation platform on the cloud (i.e. the Pangeo Platform). | ||
|
||
## Description | ||
|
||
The contents of this repository consists of a series of Jupyter Notebooks and can be viewed on an open source, free computational platform like Binder. To view the contents of this repo, click the launch binder icon above. | ||
|
||
|
||
## Installation notes | ||
|
||
**Follow the workshop with just your browser?** | ||
You can use the "launch binder" link above at the top of this README, which will launch a notebook instance on Binder with all required libraries installed. | ||
|
||
: | ||
|
||
``` | ||
``` | ||
<!-- #endregion --> | ||
|
||
## Downloading the tutorial materials | ||
|
||
**Note**: *This repository is actively being developed as a tutorial, so we will be updating the materials without notifications. To update your local copy, you can download the latest version again, or do a `git pull` if you are using git.* | ||
|
||
If you have git installed, you can always get the tutorial materials by cloning this repo: | ||
|
||
``` | ||
git clone https://github.com/ESIPFed/open-data-education.git | ||
``` | ||
|
||
Also, you can download the repository as a .zip file by heading over to the GitHub repository (https://github.com/ESIPFed/open-data-education.git) in | ||
your browser and click the green "Download" button in the upper right: | ||
|
||
|
||
## Running the tutorial | ||
|
||
**Note**: *As it is to be run on public infrastructure, you can use Binder script at the root folder.* | ||
|
||
## Tutorial index | ||
|
||
|Name |Description|link| | ||
|-----|-----------|----| | ||
|Introduction to Cloud|Details on cloud technologies |[Tutorial 1](/intotocloud.ipynb) | | ||
|Open datasets |Publically availiable datasets | [Tutorial 2](/Opendatasets.ipynb) | | ||
|Xarray |Introduction to Xarray | [Tutorial 3](/x-array.ipynb) | | ||
|Dask |Introduction to Dask | [Tutorial 4](/Dask.ipynb) | | ||
|Visualization |Introduction to HoloViews | [Tutorial 5](/Visualize.ipynb) | | ||
|Scaling-up |Using Dask to process imagery to calculate NDVI via DASK | [Tutorial 6](/Scale-up.ipynb) | | ||
|
||
## Issues | ||
|
||
**Feedback/new tutotrial** | ||
You can request new content or give general feedback through Gitub issues as well. Additionally, feel free to send us a pull request. | ||
|
||
**Notebook related** | ||
You can log issues using the GitHub ticketing, and we will address it at our earliest | ||
|
||
## Authors | ||
|
||
Aji John and Amanda Tan at University of Washington . |
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
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"## Introduction to Cloud Computing\n", | ||
"### Questions \n", | ||
"What is cloud computing and why would I use it? \n", | ||
"\n", | ||
"### Objectives \n", | ||
"- Understand big data on the cloud\n", | ||
"- Understand what kinds of NASA data are available on the cloud" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.7.0" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 4 | ||
} |
Oops, something went wrong.