This document discusses spatial indexing techniques for multidimensional point data. It describes grid files which partition space into grid cells, each associated with a disk page. It also covers tree-based methods like the kd-tree which partitions space recursively based on dimension values. Z-ordering and space-filling curves like the Hilbert curve are presented as mapping multidimensional points to a linear ordering to enable range queries on a B-tree. The document compares techniques and analyzes properties like the number of disk accesses for range queries.