Skip to content

Commit 4a65faf

Browse files
committed
Merge branch 'master' of github.com:jorisvandenbossche/DS-python-geospatial
2 parents 71bc10b + 1d6c111 commit 4a65faf

73 files changed

Lines changed: 31815 additions & 585 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The course uses Python 3, data analysis packages such as Pandas, Numpy and Matpl
2020

2121
For detailed instructions to get started on your local machine , see the [setup instructions](./setup.md).
2222

23-
In case you do not want to install everything and just want to try out the course material, use the environment setup by Binder [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jorisvandenbossche/DS-python-geospatial/master) and open de notebooks rightaway.
23+
In case you do not want to install everything and just want to try out the course material, use the environment setup by Binder [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jorisvandenbossche/DS-python-geospatial/master?urlpath=lab/tree/notebooks) and open de notebooks rightaway.
2424

2525

2626
## Contributing

_solved/01-introduction-tabular-data.ipynb

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@
10521052
"editable": true
10531053
},
10541054
"source": [
1055-
"Pandas provides a large set of **summary** functions that operate on different kinds of pandas objects (DataFrames, Series, Index) and produce single value. When applied to a DataFrame, the result is returned as a pandas Series (one value for each column). "
1055+
"Pandas provides a large set of **summary** functions that operate on different kinds of pandas objects (DataFrames, Series, Index) and produce a single value. When applied to a DataFrame, the result is returned as a pandas Series (one value for each column). "
10561056
]
10571057
},
10581058
{
@@ -2280,7 +2280,7 @@
22802280
"\\> | Greater than\n",
22812281
"\\>= | Greater than or equal\n",
22822282
"< | Lesser than\n",
2283-
"!= | Lesser than or equal\n",
2283+
"<= | Lesser than or equal\n",
22842284
"\n",
22852285
"and to combine multiple conditions:\n",
22862286
"\n",
@@ -2639,7 +2639,7 @@
26392639
"\n",
26402640
"**EXERCISE**:\n",
26412641
"\n",
2642-
"* What is the average popolation number of the districts?\n",
2642+
"* What is the average population number of the districts?\n",
26432643
"* And what is the median?\n",
26442644
"\n",
26452645
"<details>\n",
@@ -3324,7 +3324,7 @@
33243324
"\n",
33253325
"**EXERCISE**:\n",
33263326
"\n",
3327-
"* Select all rows for the districts of the 1st arrondissement.\n",
3327+
"* Select all rows for the districts of the 3rd arrondissement.\n",
33283328
"* For this subset, what is the total population of the arrondissement?\n",
33293329
" \n",
33303330
"</div>"
@@ -4209,7 +4209,7 @@
42094209
"editable": true
42104210
},
42114211
"source": [
4212-
"This is only an ultra short intro to matplotlib. In the course materials, you can find another notebook with some more details ([visualization_01_matplotlib.ipynb](visualization_01_matplotlib.ipynb#An-small-cheat-sheet-reference-for-some-common-elements))."
4212+
"This is only an ultra short intro to matplotlib. In the course materials, you can find another notebook with some more details ([visualization-01-matplotlib.ipynb](visualization-01-matplotlib.ipynb#An-small-cheat-sheet-reference-for-some-common-elements))."
42134213
]
42144214
},
42154215
{
@@ -4225,7 +4225,7 @@
42254225
"\n",
42264226
"Galleries are great to get inspiration, see the plot you want, and check the code how it is created:\n",
42274227
" \n",
4228-
"* [matplotlib gallery](http://matplotlib.org/gallery.html\") is an important resource to start from\n",
4228+
"* [matplotlib gallery](http://matplotlib.org/gallery.html) is an important resource to start from\n",
42294229
"* [seaborn gallery](https://seaborn.pydata.org/examples/index.html)\n",
42304230
"* The Python Graph Gallery (https://python-graph-gallery.com/)\n",
42314231
"\n",
@@ -5911,7 +5911,14 @@
59115911
"name": "python",
59125912
"nbconvert_exporter": "python",
59135913
"pygments_lexer": "ipython3",
5914-
"version": "3.8.5"
5914+
"version": "3.8.10"
5915+
},
5916+
"widgets": {
5917+
"application/vnd.jupyter.widget-state+json": {
5918+
"state": {},
5919+
"version_major": 2,
5920+
"version_minor": 0
5921+
}
59155922
}
59165923
},
59175924
"nbformat": 4,

_solved/02-introduction-geospatial-data.ipynb

Lines changed: 90 additions & 73 deletions
Large diffs are not rendered by default.

_solved/03-coordinate-reference-systems.ipynb

Lines changed: 50 additions & 53 deletions
Large diffs are not rendered by default.

_solved/04-spatial-relationships-joins.ipynb

Lines changed: 222 additions & 94 deletions
Large diffs are not rendered by default.

_solved/05-spatial-operations-overlays.ipynb

Lines changed: 184 additions & 191 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)