Skip to content

Commit 0cda862

Browse files
author
Xuemeng
committed
corrections
1 parent cff7184 commit 0cda862

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

index.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ code[class^="sourceCode bash"]::before { content: "Bash Source"; }
3232

3333
# Python Programing
3434

35-
In the previous tutorial, we learned how to set up virtual environments to write and run python code. In today's tutorial, we will start using these environments in VS Code, which will serve as our default IDE. If you’re more comfortable with a different IDE, feel free to use it instead. Next week we will work with spatial data analysis which more often than not results in data being displayed on a map.
35+
In the previous tutorial, we learned how to set up virtual environments to write and run python code. In today's tutorial, we will start using these environments in VS Code, which will serve as our default IDE. Next week we will work with spatial data analysis which more often than not results in data being displayed on a map.
3636

3737
During this tutorial, we will demonstrate different ways to visualize data on a map in both static and interactive formats. This can be done using several open source packages that built upon each other. To understand the functionality of these packages and how they can be integrated, we will refer to the concepts of Object Oriented Programming (OOP). Object Oriented Programming is a way of programming where objects are fundamental building blocks that supports code modularity and reusability. Since OOP is commonly used in the development of open source packages, we can reuse and adapt already developed code and its functionality. Therefore, before we go into the visualization part of this tutorial we will begin by explaining Object Oriented Programming.
3838

@@ -56,7 +56,7 @@ dependencies:
5656
- matplotlib
5757
```
5858

59-
In the terminal of VS Code, create the environment using `mamba env create --file env.yaml`. Then activate this environment using `source activate python-programming`. The select `python-programming` as interpreter, just as we did in the previous tutorial.
59+
In the terminal of VS Code, create the environment using `mamba env create --file env.yaml`. Then activate this environment using `source activate python-programming`. Then select `python-programming` as interpreter, just as we did in the previous tutorial.
6060

6161
<!--# Python help (This content is already in Tutorial 8)
6262

index.html

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@
905905
<h4 class="author"><em>Arno Timmer, Jan Verbesselt, Jorge
906906
Mendes de Jesus, Aldo Bergsma, Johannes Eberenz, Dainius Masiliunas,
907907
David Swinkels, Judith Verstegen, Corné Vreugdenhil</em></h4>
908-
<h4 class="date"><em>08 August, 2025</em></h4>
908+
<h4 class="date"><em>22 August, 2025</em></h4>
909909

910910

911911

@@ -951,9 +951,8 @@ <h1>Python Programing</h1>
951951
<p>In the previous tutorial, we learned how to set up virtual
952952
environments to write and run python code. In today’s tutorial, we will
953953
start using these environments in VS Code, which will serve as our
954-
default IDE. If you’re more comfortable with a different IDE, feel free
955-
to use it instead. Next week we will work with spatial data analysis
956-
which more often than not results in data being displayed on a map.</p>
954+
default IDE. Next week we will work with spatial data analysis which
955+
more often than not results in data being displayed on a map.</p>
957956
<p>During this tutorial, we will demonstrate different ways to visualize
958957
data on a map in both static and interactive formats. This can be done
959958
using several open source packages that built upon each other. To
@@ -991,7 +990,7 @@ <h2>Dependencies</h2>
991990
- matplotlib</code></pre>
992991
<p>In the terminal of VS Code, create the environment using
993992
<code>mamba env create --file env.yaml</code>. Then activate this
994-
environment using <code>source activate python-programming</code>. The
993+
environment using <code>source activate python-programming</code>. Then
995994
select <code>python-programming</code> as interpreter, just as we did in
996995
the previous tutorial.</p>
997996
<!--# Python help (This content is already in Tutorial 8)

0 commit comments

Comments
 (0)