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 :
- Introduction to GIS, GIS Data formats
- Introduction and Installation of all Geospatial libraries in computer and in python environment
- Spatial Operations and Relationships
- Vector data analysis and visualization
- Working with Interactive Map in a python notebook
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