Skip to content

Commit b949f42

Browse files
author
Henrikki Tenkanen
committed
Added rst-converted md files to Lessons 2-7
1 parent d706220 commit b949f42

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+4530
-2
lines changed

Pandoc_convert_md_to_rst.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,17 @@
1515
import os
1616

1717
# Input directory for md-files
18-
indir = r"C:\HY-Data\HENTENKA\KOODIT\Opetus\Python-for-geo-people\Lesson-1-Course-Environment\MDs"
18+
indir = r"C:\HY-DATA\HENTENKA\KOODIT\Opetus\Geo-Python\md\L7"
1919

2020
# Output directory for rst-files
21-
outdir = r"C:\HY-Data\HENTENKA\KOODIT\Opetus\Python-for-geo-people\Lesson-1-Course-Environment\RST"
21+
outdir = r"C:\HY-DATA\HENTENKA\KOODIT\Opetus\Geo-Python\rst\L7"
2222

2323
# Read all md files
2424
files = glob.glob(os.path.join(indir, "*.md"))
2525

2626
# Iterate over MD-files and convert them to RST
2727
for f in files:
28+
print(f)
2829
# Basename
2930
basename = os.path.basename(f)
3031
# Output path

source/lessons/L2/Anaconda.rst

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
Anaconda, our Python distribution
2+
=================================
3+
4+
For the exercises in this course we'll be using the Anaconda Python
5+
distribution. There are several different Python distributions available
6+
that include various Python tools and libraries, but Anaconda is easy to
7+
install, free and up to date. Feel free to install a copy on your
8+
personal computer to use Python wherever you please.
9+
10+
Downloading and installing Anaconda on Windows
11+
----------------------------------------------
12+
13+
TODO.
14+
15+
Downloading and installing Anaconda on Mac / Linux
16+
--------------------------------------------------
17+
18+
The Anaconda installation process on the laboratory computers will need
19+
to be done once for the course, but it is quite slow.
20+
21+
1. If you don't still have the download, you can start by `downloading
22+
Anaconda <http://repo.continuum.io/archive/Anaconda3-2.5.0-Linux-x86_64.sh>`__.
23+
This is the 64-bit version based on Python 3.5.
24+
2. After the download completes, open a new Terminal window by clicking
25+
on the Dash Home icon at the top left corner of the screen, typing
26+
``terminal`` into the search box, and clicking on the Terminal icon.
27+
3. You can now start the installation process
28+
29+
.. code:: bash
30+
31+
$ cd ~/Downloads
32+
$ bash Anaconda3-2.5.0-Linux-x86_64.sh
33+
34+
Note the ``$`` symbol represents the command prompt in the Terminal
35+
window.
36+
4. You will be first asked to agree to the license agreement. Press
37+
**Enter** to review the license. You can press space several times to
38+
get to the bottom of the agreement and then type in ``yes`` and press
39+
**Enter**.
40+
5. Next, you are asked about the installation location. Simply press
41+
**Enter** to install in the default location.
42+
6. Installation may take 30-45 minutes (!), so we can leave the
43+
installation running in the background. NOTE: You can safely ignore
44+
any error messages about not being able to create links.
45+
7. Once the installation has completed, you will be asked a final
46+
question about the installation PATH. Type ``yes`` and press
47+
**Enter**.
48+
49+
What if it fails?
50+
-----------------
51+
52+
If your Anaconda install fails, please type the following in your
53+
terminal window.
54+
55+
.. code:: bash
56+
57+
$ cd
58+
$ rm -rf anaconda3
59+
60+
You can then return to step 3 above and try to install again.
+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
Using Classroom for Github
2+
==========================
3+
4+
For the remaining exercises in the course we are using `Classroom for
5+
GitHub <https://github.com/education/classroom>`__. Here, we'll give you
6+
a sense of how Classroom for GitHub works and what you need to do to
7+
accept your assignments.
8+
9+
Classroom for GitHub
10+
--------------------
11+
12+
Classroom for GitHub is basically an application that helps you make
13+
private copies of an assignment that you can modify and submit as your
14+
answers for the exercises. We will create some template for an
15+
assignment that normally would include the following:
16+
17+
- A basic description of the assignment
18+
- A list of problems for you to solve/answer
19+
- Some "starter" Python code or codes that you need to modify for the
20+
assignment
21+
- Some data files to use with the Python scripts
22+
23+
For each exercise, We will post a link to the assignment (such as
24+
``https://classroom.github.com/assignment-invitations/a3e02d425c06db7948bcfe7ae78043``).
25+
26+
When you click the link, you will be taken to a web page where you can
27+
accept the
28+
assignment\ `1 <Note%20that%20the%20first%20time%20you%20accept%20an%20assignment%20you%20will%20need%20to%20authorize%20the%20application%20on%20Github.%20This%20will%20not%20work%20if%20you%20have%20not%20verified%20your%20email%20address%20for%20your%20Github%20account.%3Cbr/%3E>`__:
29+
30+
.. figure:: ../img/2_Accept_classroom_invitation.PNG
31+
:alt: Accept GitHub classroom invitation
32+
33+
Accept GitHub classroom invitation
34+
35+
When you accept the assignment a copy of it will be made in your
36+
personal GitHub
37+
repositories\ `2 <A%20repository%20on%20Github%20is%20basically%20like%20a%20folder%20for%20a%20given%20assignment/project.>`__,
38+
and you will be asked to make changes to the Python code and main
39+
document for each assignment. More on that below.
40+
41+
Footnotes
42+
~~~~~~~~~
43+
44+
**Next**: `Some basic elements of Python, part
45+
1 <python-basic-elements1.md>`__\ **Home**: `Lesson 2 main
46+
page <https://github.com/Python-for-geo-people/Lesson-2-Data-types-Lists>`__\
47+
**Previous**: `Logging into GitHub <log-in-GitHub.md>`__

source/lessons/L2/README.rst

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
Lesson 2: Diving into Python
2+
============================
3+
4+
During the second week we will dive into Python and learn some basic
5+
elements of Python programming language. We will also continue learning
6+
how to use the Course Environment and version control with GitHub.
7+
8+
Lesson overview
9+
---------------
10+
11+
1. `Intro to version control and
12+
GitHub <https://github.com/Python-for-geo-people/Diving-into-Python/tree/master/Lesson/intro-to-GitHub.md>`__
13+
2. `Logging into
14+
GitHub <https://github.com/Python-for-geo-people/Diving-into-Python/tree/master/Lesson/log-in-GitHub.md>`__
15+
3. `Classroom for
16+
GitHub <https://github.com/Python-for-geo-people/Diving-into-Python/tree/master/Lesson/GitHub-classroom.md>`__
17+
4. `Some basic elements of Python (part
18+
I) <https://github.com/Python-for-geo-people/Diving-into-Python/tree/master/Lesson/python-basic-elements1.md>`__
19+
20+
- `Data
21+
types <https://github.com/Python-for-geo-people/Diving-into-Python/blob/master/Lesson/python-basic-elements1.md#data-types-revisited>`__
22+
- `Lists and
23+
indices <https://github.com/Python-for-geo-people/Diving-into-Python/blob/master/Lesson/python-basic-elements1.md#lists-and-indices>`__
24+
- `The concept of
25+
objects <https://github.com/Python-for-geo-people/Diving-into-Python/blob/master/Lesson/python-basic-elements1.md#the-concept-of-objects>`__
26+
27+
5. `Writing script
28+
files <https://github.com/Python-for-geo-people/Diving-into-Python/tree/master/Lesson/writing-scripts.md>`__
29+
6. `Working on the
30+
assignments <https://github.com/Python-for-geo-people/Diving-into-Python/tree/master/Lesson/working-on-assignment.md>`__
31+
7. `Exercise 2: Writing scripts and using
32+
GitHub <https://classroom.github.com/assignment-invitations/a3e02d425c06db7948bcfe7ae7804317>`__
33+
34+
Resources
35+
---------
36+
37+
- Web pages
38+
- `Codecademy's Learn to program in
39+
Python <https://www.codecademy.com/learn/python>`__
40+
- `Software Carpentry's programming in
41+
Python <https://swcarpentry.github.io/python-novice-inflammation/>`__
42+
- Books
43+
- `Learn Python the Hard
44+
Way <http://learnpythonthehardway.org/book/>`__
45+
- `Dive into Python 3 <http://www.diveinto.org/python3/>`__
23.7 KB
Loading
Loading

source/lessons/L2/img/Edit-README.png

7.91 KB
Loading
12 KB
Loading

source/lessons/L2/img/Spyder.png

361 KB
Loading
3.85 KB
Loading
Loading

source/lessons/L2/intro-to-GitHub.rst

+213
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,213 @@
1+
Introduction to Version Control and GitHub
2+
==========================================
3+
4+
These materials are inspired and partially based on Software Carpentry's
5+
lesson on `Version Control with
6+
Git <http://swcarpentry.github.io/git-novice/>`__.
7+
8+
Contents
9+
--------
10+
11+
- `Motivation <#motivation>`__
12+
- `What is version control and why to use it? <#vcs-idea>`__
13+
- `What is GitHub? <#GitHub>`__
14+
- `Resources <#resources>`__
15+
16+
Familiar?
17+
----------
18+
19+
.. figure:: ../img/version_control_motivation_comics.png
20+
:alt: Motivation for version control
21+
22+
Motivation for version control
23+
24+
*Source: “Piled Higher and Deeper” by Jorge Cham*,
25+
http://www.phdcomics.com
26+
27+
**Wouldn't it be nice to learn how to avoid this situation!?!?**
28+
29+
We’ve all been in this situation before: it seems ridiculous to have
30+
multiple nearly-identical versions of the same document. Some word
31+
processors let us deal with this a little better, such as Microsoft
32+
Word’s “Track Changes”.
33+
34+
What is version control and why to use it?
35+
-------------------------------------------
36+
37+
What is it?
38+
~~~~~~~~~~~
39+
40+
`Version control <https://en.wikipedia.org/wiki/Version_control>`__ is
41+
used to track and store changes in your files without losing the history
42+
of your past changes.
43+
44+
Version control systems start with a base version of the document and
45+
then save just the changes you made at each step of the way. You can
46+
think of it as a tape: if you rewind the tape and start at the base
47+
document, then you can play back each change and end up with your latest
48+
version.
49+
50+
.. figure:: ../img/play-changes.PNG
51+
:alt: Illustration of committing changes
52+
53+
Illustration of committing changes
54+
55+
A version control system is a tool that keeps track of these changes for
56+
us and helps us version our files *(`and
57+
merge <https://en.wikipedia.org/wiki/Merge_(version_control)>`__*- not
58+
covered in this course). It allows you to decide which changes make up
59+
the next version, called a commit, and keeps useful metadata about them.
60+
The complete history of commits for a particular project and their
61+
metadata make up a repository (such as our course material
62+
repositories). Repositories can be kept in sync across different
63+
computers facilitating also collaboration among different people.
64+
65+
There are multiple different Version Control Systems (VCS) (i.e. a
66+
software for doing version control) but one of the most popular one is
67+
**`Git <https://en.wikipedia.org/wiki/Git_(software)>`__** that was
68+
created by Linus Torvalds in 2005. Git is the version control system
69+
that is running behind the scenes and used with GitHub. And that's
70+
actually where its name 'Git - Hub' originates from.
71+
72+
Why to use it?
73+
~~~~~~~~~~~~~~
74+
75+
One of the most obvious reasons why to use version control is to avoid
76+
the situation illustrated in the `comics above <#motivation>`__, i.e. to
77+
keep track of the full history of your changes in a systematic way
78+
without the need to have multiple versions of the same file. One really
79+
useful feature of version control is the ability to "go back in time",
80+
i.e. if something goes wrong, you can start from some earlier version of
81+
the file when everything was still working. You can also compare the
82+
differences between versions and see what has changed. In addition
83+
aforementioned aspects, version control makes possible for multiple
84+
people to work on the same file or project at the same time while still
85+
keeping track of their own changes to the files.
86+
87+
Some basic vocabulary of Version Control
88+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
89+
90+
Few basic terms that are used often when discussing about version
91+
control (not exhaustive).
92+
93+
- **Repository** = a location where all the files for a particular
94+
project are stored, usually abbreviated to “repo.” Each project will
95+
have its own repo, which is usually located on a server and can be
96+
accessed by a unique URL (a link to GitHub page for example).
97+
98+
- **Commit** = To commit is to write or merge the changes made in the
99+
working copy back to the repository. Whe you commit, you are
100+
basically taking a “snapshot” of your repository at that point in
101+
time, giving you a checkpoint to which you can reevaluate or restore
102+
your project to any previous state. The terms 'commit' or 'checkin'
103+
can also be used as nouns to describe the new revision that is
104+
created as a result of committing.
105+
106+
- **Revision / version** = A revision or a version is any change in
107+
made in any form to a document(s).
108+
109+
- **Clone** = Cloning means creating a repository containing the
110+
revisions from another repository. This is equivalent to pushing or
111+
pulling into an empty (newly initialized) repository. As a noun, two
112+
repositories can be said to be clones if they are kept synchronized,
113+
and contain the same revisions.
114+
115+
- **Pull / push** = Copy revisions from one repository into another.
116+
Pull is initiated by the receiving repository, while push is
117+
initiated by the source. Fetch is sometimes used as a synonym for
118+
pull, or to mean a pull followed by an update.
119+
120+
- **Merge** = A merge or integration is an operation in which two sets
121+
of changes are applied to a file or set of files.
122+
123+
What is GitHub?
124+
----------------
125+
126+
Now that you know the basics of version control we can dive into
127+
explaining what GitHub is.
128+
129+
**Relies on Git**
130+
131+
GitHub in principle is a web based Git repository hosting service. Thus
132+
it wouldn't exist without the version control system Git. Git is also
133+
running all the time in the background when using GitHub.
134+
135+
**Social (collaborative) network**
136+
137+
However, GitHub is much more than just a hosting service for Git
138+
repositories as it is also a social network where people can collaborate
139+
with each other. It is also easy to invite other GitHub users to work
140+
with the same project. GitHub is a highly popular place for sharing
141+
codes openly to the entire world or alternatively only to the
142+
collaborators working on the same project.
143+
144+
**Open source / science**
145+
146+
All publicly available repositories can also be downloaded to your own
147+
local computer where you can start modifying the codes for your own
148+
purpose which is called "forking". However, you should always check and
149+
follow the license terms mentioned in the project that basically tells
150+
you what you can do (and what not) with the codes that are shared.
151+
Usually there might be some limitations for commercial use of the codes
152+
for example. Sharing your work publicly to others is also the basic
153+
principle of open science.
154+
155+
**Documentation**
156+
157+
GitHub repositories are often also used as web pages for different
158+
projects. In GitHub such web pages typically include technical
159+
documentation, instructions and examples how to use the codes or
160+
software shared on that page. **It is extremely important that you
161+
document well your codes and programs that you have done!** GitHub
162+
provides a nice platform for doing and sharing such documentation.
163+
164+
Each repository (and possibly its subfolders) includes a file called
165+
``README.md`` that by default is the front-page of the given repository
166+
in GitHub. Those files are written using a specific simple language
167+
called `Markdown <https://daringfireball.net/projects/markdown/>`__ that
168+
can be used to create nice looking web pages with different formattings,
169+
figures, tables and so on. Markdown is really easy to use once you have
170+
learned the basic syntax of how different textual elements are written.
171+
172+
**Online tools**
173+
174+
There are multiple useful tools integrated into GitHub such as
175+
possibility to edit the documents or codes directly from the web site.
176+
What is even better is that Git is always running in background also in
177+
the web environment, thus all your changes made in the web browser will
178+
be saved as commits. It is also possible to browse the whole history of
179+
a file directly from the GitHub's online interface and track the changes
180+
that you have done.
181+
182+
Usually Git (the software) is run from the command prompt but GitHub
183+
provides a way to do Git commands without the need to run any commands
184+
in the terminal. There are, however, also other graphical user
185+
interfaces for Git that comes with some `Integrated Development
186+
Environments
187+
(IDE) <https://en.wikipedia.org/wiki/Integrated_development_environment>`__.
188+
189+
**Issue tracking**
190+
191+
In GitHub it is also possible to give feedback to the developer by
192+
creating a specific "Issue" that can be used to report for example a bug
193+
that was found in the code or software. Issues can also be used to track
194+
ideas, enhancements, tasks for projects on GitHub. You can use Issues
195+
also to organize tasks you'd like to accomplish, such as adding new
196+
features or auditing old ones.
197+
198+
Resources
199+
----------
200+
201+
- `Screencast series in Youtube for learning
202+
GitHub <https://www.youtube.com/playlist?list=PL4Q4HssKcxYsTuqUUvEHJ8XxOVOHTSmle>`__
203+
- `Tutorial on few extra features of GitHub not (most probably) covered
204+
in this course (e.g. branch, pull-request,
205+
merge) <https://guides.github.com/activities/hello-world/>`__
206+
- `A TechCrunch article about 'What is GitHub
207+
Anyway?' <https://techcrunch.com/2012/07/14/what-exactly-is-github-anyway/>`__
208+
- `A list of resources for learning Git and
209+
GitHub <https://help.github.com/articles/good-resources-for-learning-git-and-github/>`__
210+
211+
**Next**: `Logging into GitHub <log-in-GitHub.md>`__\ **Home**: `Lesson
212+
2 main
213+
page <https://github.com/Python-for-geo-people/Lesson-2-Data-types-Lists>`__\

0 commit comments

Comments
 (0)