-
Notifications
You must be signed in to change notification settings - Fork 3
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 #70 from EarthCubeInGeo/develop
Release candidate for v2020.2.0
- Loading branch information
Showing
11 changed files
with
155 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ Contents | |
readme | ||
installation/index | ||
usage | ||
tutorials | ||
mounting | ||
|
||
Changelog | ||
|
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,38 @@ | ||
Tutorials | ||
********* | ||
|
||
The InGeO team has collected a variety of `tutorials <https://github.com/EarthCubeInGeo/resen-core/tree/master/tutorials>`_ to help new users get started with everything from python basics to using specific geospace packages included in Resen. These tutorials are available as jupyter notebooks and are automatically mounted in `Resen Online <https://ingeo.datatransport.org/home/resen/resen-online>`_, however, in deference to users who may want a cleaner starting environment, they have not been automatically included in the resen-core image. The simplest way to access a tutorial is to download it directly into your resen bucket. | ||
|
||
1. Start a bucket. | ||
|
||
2. Launch a terminal window. | ||
|
||
3. Navigate to where you would like the tutorial to be saved with `cd`. For instance, to save tutorials to the work directory:: | ||
|
||
$ cd /home/jovyan/work | ||
|
||
4. Copy/paste the appropriate fetching command from the table below to download the tutorial, for example:: | ||
|
||
$ wget https://raw.githubusercontent.com/EarthCubeInGeo/resen-core/v2020.2.0/tutorials/GetStartedWithPython.ipynb | ||
|
||
After downloading completes, the tutorial notebook should be visible in the navigation toolbar. By double-clicking, you can launch the jupyter notebook, read through descriptions, try example code, and even modify the notebook to try new things. | ||
|
||
+----------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+ | ||
| Tutorials | Fetch Command | | ||
+========================================================================================================================================+========================================================================================================================+ | ||
| `GetStartedWithPython.ipynb <https://github.com/EarthCubeInGeo/resen-core/blob/v2020.2.0/tutorials/GetStartedWithPython.ipynb>`_ | ``wget https://raw.githubusercontent.com/EarthCubeInGeo/resen-core/v2020.2.0/tutorials/GetStartedWithPython.ipynb`` | | ||
+----------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+ | ||
| `GetStartedWithJupyter.ipynb <https://github.com/EarthCubeInGeo/resen-core/blob/v2020.2.0/tutorials/GetStartedWithJupyter.ipynb>`_ | ``wget https://raw.githubusercontent.com/EarthCubeInGeo/resen-core/v2020.2.0/tutorials/GetStartedWithJupyter.ipynb`` | | ||
+----------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+ | ||
| `GetStartedWithResen.ipynb <https://github.com/EarthCubeInGeo/resen-core/blob/v2020.2.0/tutorials/GetStartedWithReSEn.ipynb>`_ | ``wget https://raw.githubusercontent.com/EarthCubeInGeo/resen-core/v2020.2.0/tutorials/GetStartedWithReSEn.ipynb`` | | ||
+----------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+ | ||
| `GeospacePackagesInResen.ipynb <https://github.com/EarthCubeInGeo/resen-core/blob/v2020.2.0/tutorials/GeospacePackagesInResen.ipynb>`_ | ``wget https://raw.githubusercontent.com/EarthCubeInGeo/resen-core/v2020.2.0/tutorials/GeospacePackagesInResen.ipynb`` | | ||
+----------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+ | ||
| `CaseStudy.ipynb <https://github.com/EarthCubeInGeo/resen-core/blob/v2020.2.0/tutorials/CaseStudy.ipynb>`_ | ``wget https://raw.githubusercontent.com/EarthCubeInGeo/resen-core/v2020.2.0/tutorials/CaseStudy.ipynb`` | | ||
+----------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+ | ||
| `Intro-Swarm-viresclient.ipynb <https://github.com/EarthCubeInGeo/resen-core/blob/v2020.2.0/tutorials/Intro-Swarm-viresclient.ipynb>`_ | ``wget https://raw.githubusercontent.com/EarthCubeInGeo/resen-core/v2020.2.0/tutorials/Intro-Swarm-viresclient.ipynb`` | | ||
+----------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+ | ||
| `ICON-Data-Demo.ipynb <https://github.com/EarthCubeInGeo/resen-core/blob/v2020.2.0/tutorials/ICON-Data-Demo.ipynb>`_ | ``wget https://raw.githubusercontent.com/EarthCubeInGeo/resen-core/v2020.2.0/tutorials/ICON-Data-Demo.ipynb`` | | ||
+----------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+ | ||
| `CitationHelper.ipynb <https://github.com/EarthCubeInGeo/resen-core/blob/v2020.2.0/tutorials/CitationHelper.ipynb>`_ | ``wget https://raw.githubusercontent.com/EarthCubeInGeo/resen-core/v2020.2.0/tutorials/CitationHelper.ipynb`` | | ||
+----------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+ |
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,17 @@ | ||
# Script to replace the version numbers in all *.rst files EXCEPT HISTORY.rst | ||
|
||
import re | ||
import os | ||
import fileinput | ||
|
||
old_version = '2020.2.0' | ||
new_version = '2020.1.0' | ||
|
||
for root, dirs, files in os.walk('..'): | ||
for fn in files: | ||
if fn.endswith('.rst') and fn!='HISTORY.rst': | ||
|
||
filename = os.path.join(root,fn) | ||
with fileinput.FileInput(filename, inplace=True) as f: | ||
for line in f: | ||
print(line.replace(old_version, new_version), end='') |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
__version__ = '2020.1.0' | ||
__version__ = '2020.2.0' | ||
|
||
from .Resen import Resen |
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