GFDRR Open Source Mentoring Guide

GFDRR Open Source Mentoring Guide

View the Project on GitHub GFDRR/mentoring-guide

Spatial Indexes

Spatial indexes are used in PostGIS to speed up queries. It is essential to understand how to create and manage spatial indexes on your databases in order to avoid slow sequential queries that scan every record in a table. Indexing speeds up searches by organizing the data into trees that can be quickly traversed to find specific records. PostGIS supports 3 type of indexes (B-Tree, R-Tree and GIST). GIST are the most commonly used types of indexes.

Goals/Objectives/Outcomes

Reference Material

Measures of Success