Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 2.26 KB

File metadata and controls

46 lines (35 loc) · 2.26 KB

Geopython 2021 Tutorial - Introduction to GIS and Geospatial Analysis with Python

Binder

Instructors

Description

This tutorial is an introduction to Geospatial Domain and its analysis using python. Since almost all industries are more or less connected to Location and mapping, it is important to spread awareness and literate developers to understand different aspects of the GIS (Geographic Information System) industry. The first Part of this series focuses on different GIS Data types and how to read them, This includes understanding different data formats such as Shapefiles, GeoJSON, WKT, CSV, TIFF, GeoTIFF, etc. . Users can actually read such files on their computers and be familiar with them. The second part of this series focuses on geospatial analysis with python. Users will first practice working with some core GIS functionalities using GDAL and OGR on the terminal (and later in python). After this, users will be familiarised with the most widely used geospatial python libraries such as pandas, geopandas, fiona, shapely, matplotlib, PySAL, rasterio . Complete Series is divided into the following subtopics :

  1. Introduction to GIS, GIS Data formats
  2. Introduction and Installation of all Geospatial libraries in computer and in python environment
  3. Spatial Operations and Relationships
  4. Vector data analysis and visualization
  5. Working with Interactive Map in a python notebook

Installation notes

Following this tutorial will require recent installations of:

  • Python >= 3.5
  • pandas
  • geopandas >= 0.3.0
  • matplotlib
  • shapely
  • ipyleaflet
  • GDAL-OGR
  • venv

If you do not yet have these packages installed, we recommend to use the venv environment manager to install all the requirements

Once venv is installed create environment by following command

python3 -m venv geopy2021 

once environment is create, activate it by following command

source geopy2021/bin/activate

All required packages can be installed by following command

pip install -r requirements.txt