GeoComp & ML 2023 course

Geocomputation and Machine Learning for environmental applications

(Spatial Ecology is supporting the RAM4Africa project)

Online teaching: April and May 2023, 8 weeks

  • Start lecturing: 28 March, every Tuesday and Thursday at 3 pm - 5:45 pm UTC (CEST 5 pm, EDT 11 am, PDT 8 am)

  • Catch-up session: Tuesday 25 April: 3 pm - 5:45 pm UTC (CEST 5 pm, EDT 11 am, PDT 8 am)

  • Catch-up session: Thursday 27 April: 3 pm - 5:45 pm UTC (CEST 5 pm, EDT 11 am, PDT 8 am)

  • Resume lecturing: 3 May, every Wednesday and Friday at 3 pm - 5:45 pm UTC (CEST 5 pm, EDT 11 am, PDT 8 am)

  • End lecturing 26: May, at 3pm – 5:45 pm UTC (CEST 5 pm, EDT 11 am, PDT 8 am)

Classes youtube playlist link

In presence: June, one week in Matera, Italy

The in-person Matera session can be considered a sort of hackathon where participants will work on their code from 9am to 5pm and on the last days will present their final project and code. This week aims to achieve group collaboration and troubleshooting under the direct supervision of the trainers. During this session, there will also be brief talks from the trainers and from invited speakers.

We proposed one week of hackathon.

  • June 5th - 9th.

Course objectives

In this course, students will be introduced to an array of powerful open-source geocomputation tools and machine learning methodologies under Linux environment. Students who have never been exposed to programming under Linux are expected to reach the stage where they feel confident in using very advanced open source data processing routines. Students with a precedent programming background will find the course beneficial in enhancing their programming skills for better modelling and coding proficiency. Our dual teaching aim is to equip attendees with powerful tools as well as rendering their abilities of continuing independent development afterwards. The acquired skills will be beneficial, not only for GIS related application, but also for general data processing and applied statistical computing in a number of fields. These essentially lay the foundation for career development as a data scientist in the geographic domain.

All the class will be recorded. The video link will be posted in the syllabus below

Class roster

Syllabus

Below we are going to list day by day the final syllabus with the relatives links to the materials and recorded video.

Lecture 1: 28th of March, 2023.

Getting started: knowing each other and course introduction.

This session introduces the objective of the course and a round table among the students and the teachers.

Recorded lecture can be found here.

Time below in CEST

  • 17:00 - 17:10 Tushar Sethi: background/interest & course objective - communication/administration role.

  • 17:10 - 17:25 Antonio Fonseca: background/interest & machine learning introduction - teaching role.

  • 17:25 - 17:40 Pieter Kempeneers: background/interest & pyjeo introduction - teaching role.

  • 17:40 - 17:55 Giuseppe Amatulli: background/interest & bash/gdal/pktools introduction - teaching role.

  • 18:55 - 18:10 Francesco Lovergine: background/interest & geo-python introduction - teaching role.

  • 18:10 - 18:25 Longzhu Shen: background/interest & stat/math subjects - supervision role.

  • 18:25 - 18:45 Break

  • 18:40 - 19:20 Students round table + QA of the course.

  • 19:20 - 19:45 Virtual machine installation review, QA & troubleshooting.

Lecture 2: 30th of March, 2023.

Jump start into LINUX Bash programming (Giuseppe Amatulli)

During this session we explore and practice the basics of BASH terminal command line. The acquired skills will be used in all following sections.

Recorded lecture can be found here.

Suggested assignments:

These assignments do not need to be delivered nonetheless we suggest doing it in order to get familiar with the bash command line topics. Below, some suggestions of possible operations:

  • Get fast in navigating up and down in the directory using only the command line.

  • Copy/move files from a directory to another directory.

  • Search and use a command for copy file from you pc to a Linux remote server.

  • Get fast on using keyboard shortcuts.

  • Perform a data download operation using wget or curl.

  • Unzip/untar files.

  • Get familiar with apt update && apt upgrade && apt install to maintain your OSGeoLIve Linux Virtual Machine and install new software.

Lecture 3: 4th of April, 2023.

Discovering the power of AWK programming language (Giuseppe Amatulli).

Recorded lecture can be found here.

This session is fundamental for data filtering and preparation, bulk data download, text files manipulation, descriptive statistics and basic mathematical operation on large files. Students will access, query, understand and clean up data, perform data filtering using bash command line. We use AWK which is an extremely versatile and powerful programming language for working on text files, performing data extraction and reporting or to squeeze data before importing them into R/python or other software types.

  • Welcome to AWK world. Why to use AWK command line (Lecture).

  • The basic commands, command syntax (Hands on tutorial).

    • Built in variables

    • Import variables

    • String functions

    • Numerical functions

    • Query functions

    • Manipulate large files before importing in R

    • A study case: Manipulate thousand of text file with BASH and AWK

    • This session summarizes the use of BASH and AWK with a practical example of text file manipulation.

  • Explain GSIM text files (Lecture).

    • Data exploration (Hands on tutorial).

    • Count number of observations

    • Count how many observations per date

    • Monthly MEAN distribution

Compulsory assignments:

These assignment is compulsory and need to be delivered before 10th of April, 2023 12pm, UTC time. Please send the jupyter file or sh file (name as name_surname.ipynb or name_surname.sh ) as e-mail attachment to g.amatulli@spatial-ecology.net.

Using the bash (and/or awk) language manipulate the GSIM/US*.mon files in order to create txt files, one for each month-year, that includes the station ID, latitude, longitude and the MEAN value.

The final output will be n text file (form FirstDateOfTheSeries to LastDateOfTheSeries) with the following structure:

cat 2002-01.txt 

Gsim.no latitude longitude MEAN
US_0001971 33.79427255 -84.4743747 0.916785714285714
US_0001977 33.65666667 -84.6736111 74.5558064516129

In case you wanna manipulate your own txt (or csv) files, fell free to do it by implementing everything in bash (and/or awk). You can perform:

  • data summary

  • table re-organization

  • data filtering



Lecture 4: 6th of April, 2023.

Manipulate geographical data with GDAL/OGR (Giuseppe Amatulli).

Recorded lecture can be found here.

This section introduces data manipulation for geospatial data processing on the command line using GDAL & OGR libraries.

Suggested assignments:

Get familiar with gdalinfo & gdal_edit.py using your data or the tif file stored in the SE_data.


Watch this lecture to get more insight on the different data type

Numerical System Decimal vs Binary. Recorded lecture: 1:28:45 - 1:48:00


These assignments do not need to be delivered, nonetheless we suggest doing it in order to get familiar with gdal_calc.py and with the issues of selecting the correct datatype and gdal_calc formula.

Lecture 5: 11th of April, 2023.

Manipulate geographical data with GDAL/OGR (Giuseppe Amatulli).

Recorded lecture can be found here.

This section introduces data manipulation for geospatial data processing on the command line using GDAL & OGR libraries.

Compulsory assignments:

  • This assignment focus in attending a video recording lecture aiming to push the precessing in the multi-core environment.

  • Multicore operation within gdal and pktools

    • Transform a simple “for loop” in multicore “for loop”

Suggested assignments:

  • These assignments do not need to be delivered now, nonetheless do it in order to get familiar with the gdal/ogr command line topics. In two weeks, when all the geographic tools will be covered, you will need to handling a scripting procedure that prepare the geographic dataset for your final project, so better to start now :-).

Below, some suggestions of possible operations:

  • Start to prepare the geographic dataset for your final project.

    • Using wget and/or curl download geographic dataset from an official repository

    • Assess and re-align geographic extent and pixel resolution (gdal_edit.py)

    • Using gdal command performs: cropping, merging (vrt+gdal_translate), re-projecting.

Lecture 6: 13st of April, 2023.

Manipulate geographical data with PKTOOLS (Giuseppe Amatulli)

Recorded lecture can be found here.

This section introduces data manipulation for geospatial data processing on the command line using PKTOOLS.

Compulsory assignments:

Before the 18th of April, 2023, watch the “Manipulate Landsat data with GDAL and PKTOOLS for a gap filling example” lecture (all links in Lecture 7). On the 18th of April, 2023 we will do a QA and a review of gdal and pkstools commands. Feel free to present your scripting procedure for receiving feedback and suggestions.

Suggested assignments:

  • Assess and re-align geographic extent and pixel resolution (gdal_edit.py)

  • Using gdal command performs: cropping, merging (vrt+gdal_translate), re-projecting.

  • Using pktools command performs: masking, filtering, histogram, re-classification, zonal statistic.

Lecture 7: 18th of April, 2023.

Manipulate Landsat data with GDAL and PKTOOLS for a gap filling example (Giuseppe Amatulli).

Video Recording of the lecture

Recorded of the QA can be found here.

This section introduces a real example of satellite data GLAD ARD processing using GDAL/OGR and PKTOOLS in a Bash environment.

  • Temporal interpolation of landsat images (A.)

    • Data download & cropping

    • Image characteristics

    • Temporal composite

    • Temporal interpolation

    • Plotting the temporal interpolation for band 1

    • Assessing the temporal interpolation

  • Temporal analysis: Approximation (S.)

    • Polynomial Interpolation

    • Piecewise Interpolation

      • Cubic Spline

      • Hermite cubic spline

      • Akima

      • Steffen

    • Smoothing

      • Salvitsky-Golay filtering

      • Fourier Transform

      • Wavelet

Lecture 8: 20th of April, 2023.

Geospatial python (Francesco Lovergine)

Recorded lecture can be found here.

Catch-up session 1: 25th of April, 2023

Students will meet online with the teachers to review past material and solving additional doubts.

Recorded of the QA can be found here. Password has been sent by e-mail on March 28 (it will be the same pass-code for all recordings).

Catch-up session 2: 27th of April, 2023.

Students will meet online with the teachers to review past material and solving additional doubts.

Recorded of the QA can be found here. Password has been sent by e-mail on March 28 (it will be the same pass-code for all recordings).

Lecture 9: 3nd of May, 2023.

Geospatial python (Pieter Kempeneers)

Recorded lecture can be found here.

The first part of the video recording (00:00 - 49:45) has been dedicate to trouble shouting the installation of pyjeo (anyway with the new install_pyjeo.sh that you find in the git-repository it should be fine). Rather the second part (49:45 - until the end) is the real pyjeo lectures.

Lecture 10: 5th of May, 2023.

Geospatial python (Pieter Kempeneers)

Recorded lecture can be found here.

Always do the git pull to get the new scripts.

Lecture 11: 10th of May, 2023.

Machine Learning Introduction, Support Vector Machine & Random Forest (Antonio Fonseca & Giuseppe Amatulli)

In this class we will set the main fundamentals to implement machine learning in geo science. We will use the data-set and explanation described in Estimation of tree height using GEDI dataset - Data explore.

Recorded lecture can be found here.

Lecture 12: 12th of May, 2023.

Machine Learning - Perceptron (Antonio Fonseca)

Recorded lecture can be found here.

Lecture 13: 17th of May, 2023.

Machine Learning - Perceptron (Antonio Fonseca)

Recorded lecture can be found here.

Lecture 14: 19th of May, 2023.

Machine Learning - Architecture of Neural Networks (Antonio Fonseca)

Recorded lecture can be found here.

Lecture 15: 24th of May, 2023.

Machine Learning - Capacity, Overfitting, Underfitting - Convolutional Neural Networks (Antonio Fonseca)

Recorded lecture can be found here.

  • Feedforward Neural Networks

    • Quick recap

    • Extra regularization techniques

    • Capacity, Overfitting and Underfitting

    • Debugging tips

    • Family of optimizers

    • Tutorial: more features and different optimizers

  • Convolutional Neural Networks

    • Kernels, padding, pooling

    • Classification tasks

    • Tutorial: data batching, classification of satellite images

    • Kernels, padding, pooling

    • Classification tasks

    • Tutorial: data batching, classification of satellite images

Lecture 16: 26th of May, 2023.

Machine Learning - Papers discussion (Antonio Fonseca)

Recorded lecture can be found here.

Lecture 17: 6th of June, 2023.

In presence week in Matera, Italy

Using GPT (Antonio Fonseca)

Recorded lecture can be found here.

Lecture 18: 6th of June, 2023.

In presence week in Matera, Italy

Pyjeo in combination with sklearn (Pieter Kempeneers)

Recorded lecture can be found here.

  • Classification in python using pyjeo and sklearn

Lecture 19: 6th of June, 2023.

In presence week in Matera, Italy

Google Earth Engine (GEE) (Francesco Lovergine)

Recorded lecture can be found here.

  • Use of GEE with Javascripts and python buinding.