patrickcgray / open-geo-tutorial

Tutorial of fundamental remote sensing and GIS methodologies using open source software in python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Open Source Geoprocessing Tutorial

Creative Commons License

Tutorial of basic remote sensing and GIS methodologies using modern open source software in Python (rasterio, shapely, geopandas, folium, etc). Notebooks cover raster processing, vector analysis, cloud-based tools like Google Earth Engine, a workflow to perform image classification using machine learning classifiers in scikit-learn, and an introduction to handling large array datasets with xarray:

This repo can be run entirely in the cloud with no manual setup via Binder by clicking this badge:

Binder

*** once in a blue moon launching via Binder fails either for lack of resources or due to a network error, but typically if you re-click the link it will launch correctly.

Repo Structure

All chapters are available as jupyter notebooks in the notebooks/ directory or viewable via a normal web browser in HTML:

  1. Introduction [HTML]

  2. The GDAL datatypes and objects [HTML]

  3. Your first vegetation index [HTML]

  4. Visualizing data [HTML]

  5. Vector data - the OGR library [HTML]

  6. Land cover classification [HTML]

  7. Deep Learning for land cover classification [HTML] built to run in Google Colab.

  8. Earth Engine for Oceanographic Time Series Analysis [HTML]

  9. Xarray for handling N-dimensional arrays and advanced visualization with hvplot [HTML]

I strongly recommend using Binder and interactively playing with these notebooks. As an alternative, or if you want to work more extensively with these labs or use them as a template for your own work, you can easily git clone the whole repo and use the included Dockerfile to set up your environment.

Some of the things you'll learn:

Raster Operations, Processing, and Visualization

Interactive Shapefile and Raster Visualization

Machine Learning based Satellite Image Classification

Dealing with large datasets and interactive analysis

Setup

On Binder

As mentioned above, this repo can be run entirely in the cloud with no manual setup via Binder by clicking this badge and this is what we strongly recommend for beginner users:

Binder

Locally

Download

Materials for these lessons are included inside this repository under the notebooks/ directory. If you're not running in Binder I would recommend downloading all of the lesson material at once, instead of downloading individual files.

  • Use git clone https://github.com/patrickcgray/open-geo-tutorial.git to clone the repository

Python Installation

To run the Jupyter Notebooks (formerly known as IPython Notebooks) and follow the tutorial locally, you will need to install Python and the libraries used in the tutorials. This installation can be accomplished in many ways, but I recommend Docker:

Docker

I highly recommend trying out Docker if you're not familiar with it. There is a bit of a startup time just for getting up to speed but it is the way to go for reproducible work and cloud deployable workflows. Docker provides operating-system-level virtualization, also known as "containerization" and thus you can be sure that your setup precisely replicates the one used here and will easily run everything. Once you've downloaded Docker you can simply cd into the cloned git repo and run:

docker run -it --rm -p 8888:8888 -v <path to repo>:/home/jovyan/repo/ pangeo/pangeo-notebook:2021.05.15 jupyter lab --ip 0.0.0.0

This will download the Docker image that is needed to run this whole repo and then it will start up a Jupyter Lab instance that you can access by clicking the link in the terminal. Just change <path to repo> to the appropriate path and you'll be good to go!

Thanks

This series is modified from an excellent tutorial series put together by @ceholden teaching open source geospatial tools with GDAL/OGR/OSR directly which I have modified to use more pythonic libraries and expanded with more material. A big thanks for Chris for building the foundation for this series!

About

Tutorial of fundamental remote sensing and GIS methodologies using open source software in python

License:Other


Languages

Language:Jupyter Notebook 99.7%Language:HTML 0.3%Language:Dockerfile 0.0%