Member-only story
The Ultimate Beginner’s Guide to Geospatial Raster Data
Everything you need to know about raster files, georeferencing, metadata and Rasterio Python library
Most aerial photographs and imagery from satellites are raster files.
This format is often used to represent real-world phenomena. If you are working with geographic data, there is a high chance you have to deal with it.
To use geographical raster files with Python, different theoretical concepts are required. Before jumping to the programmatic part, I highly recommend you follow the introductory sections.
Table of content
- Introduction: first concepts.
- Applications: where are rasters used?
- Colormap: discrete and continuous colormaps to visualize rasters.
- Georeferencing: CRS and Affine Transformations.
- Raster’s metadata: all the data associated with rasters.
- Rasterio: read, save, georeference and visualize raster files in Python.
Introduction
A raster consists of a matrix of cells (or pixels) organized into rows and columns where each cell…