Location is among the most fundamental attributes of anything that exists in the physical world. Every person, vehicle, asset, event, or phenomenon has a position in space. For most of human history, capturing, managing, and reasoning about that positional information required specialised expertise and expensive tools. That is no longer true.

Today, location data is generated continuously at massive scale — by smartphones, vehicles, satellites, sensors, cameras, and infrastructure — and the cost of storing and processing it has fallen to near zero. The question for organisations is no longer whether they have location data. It is whether they know how to turn it into intelligence.

# What Is Spatial Data Intelligence?

Spatial data intelligence is the discipline of deriving actionable insight from data that has a geographic component. It encompasses everything from basic spatial queries (“which customers are within 5 kilometres of this store?”) to complex analytical workflows that combine multiple data sources, apply statistical and machine learning methods, and produce predictive models of spatially distributed phenomena.

The term distinguishes the analytical and intelligence-generating dimension of working with spatial data from the older concept of Geographic Information Systems (GIS), which historically emphasised data management and cartographic output. Traditional GIS was fundamentally about maps: capturing spatial data accurately, storing it reliably, and displaying it correctly. Spatial data intelligence is about questions: what patterns exist in this data, what can we predict from it, and what decisions should it inform?

This distinction matters in practice. A GIS analyst producing a map of infrastructure assets is doing valuable work. A spatial intelligence analyst identifying correlations between infrastructure proximity and service demand, building a predictive model of future maintenance requirements, and optimising the allocation of maintenance crews — that is a different category of work, and it requires a different set of tools, techniques, and thinking.

# The Core Data Types

Spatial data intelligence works with several distinct categories of geographic information, each with its own characteristics, challenges, and analytical possibilities.

# Vector Data

Vector data represents spatial features as geometric objects: points, lines, and polygons. A point might represent a retail location, a weather station, or a GPS-tagged event. A line might represent a road, a pipeline, or a shipping route. A polygon might represent a building footprint, an administrative boundary, or a flood risk zone.

Vector data is the primary currency of traditional GIS and remains fundamental to spatial analytics. Its key characteristics are that features have discrete boundaries, they can carry rich attribute data, and they are well suited to operations like containment queries (“which points are inside this polygon?”), proximity analysis (“which features are within 500 metres of this point?”), and network routing (“what is the shortest path between these locations?”).

# Raster Data

Raster data divides the world into a regular grid of cells (pixels), each carrying a value. Satellite imagery is the most familiar form: each pixel represents the reflected energy from a patch of ground in one or more spectral bands. But raster data encompasses elevation models (where each cell contains a height value), air quality indices, temperature fields, and any other phenomenon that varies continuously across space.

The analytical power of raster data lies in the ability to work with every location simultaneously, rather than with discrete features. Calculating terrain slope from an elevation model, identifying land cover from satellite imagery, or modelling the spread of a wildfire through a landscape all leverage this continuous spatial representation.

# Point Cloud Data

Point clouds are three-dimensional datasets consisting of millions or billions of individual spatial measurements, each with X, Y, and Z coordinates and typically additional attributes like intensity or colour. They are produced primarily by LiDAR (Light Detection and Ranging) sensors mounted on aircraft, vehicles, or drones, and increasingly by photogrammetric methods applied to overlapping photographs.

Point clouds are extraordinarily data-rich. A high-resolution airborne LiDAR survey can capture the three-dimensional structure of buildings, vegetation, and terrain in enough detail to measure individual tree heights, calculate building volumes, and detect millimetre-scale infrastructure deformation. Processing them at scale requires specialised tools and significant compute, but the intelligence that can be derived from them is increasingly valuable.

# Trajectory and Movement Data

Movement data — sequences of spatial observations over time — has become enormously important as GPS-equipped devices have proliferated. Every smartphone is a trajectory sensor. Every connected vehicle generates a stream of position observations. Every ship, aircraft, and container in global logistics emits a trace of its movement through space.

The intelligence embedded in movement data is qualitatively different from static spatial data. It captures not just where things are but how they behave: the patterns of human mobility, the flow of goods through supply chains, the movement of wildlife populations, the propagation of social phenomena through physical space.

# The Intelligence Pipeline

Converting raw spatial data into actionable intelligence follows a pipeline that, while varying in its specific steps, has consistent stages.

Acquisition and ingestion is the process of obtaining spatial data and loading it into the analytical environment. For some data types — GPS traces from company vehicles, for example — this is a continuous stream. For others — a national census dataset, a satellite image archive — it is a batch process. The key engineering challenges at this stage are handling diverse formats (GDAL is invaluable here), managing coordinate reference systems, and ensuring data quality.

Storage and indexing determines how spatial data is persisted and how efficiently it can be queried. The right choice depends on the data type and the query patterns: PostGIS in PostgreSQL is excellent for vector feature data with complex attribute queries; columnar formats like GeoParquet are better for analytical workloads over very large datasets; object storage with spatial formats like COG or PMTiles is best for raster imagery and pre-rendered tiles.

Transformation and enrichment converts raw spatial data into analysis-ready form. This typically involves reprojection (converting between coordinate systems), cleaning (removing invalid geometries, handling nulls), aggregation (combining individual GPS points into routes, rolling up point data to areas), and enrichment (joining spatial data with non-spatial attributes from other systems).

Analysis is where the intelligence emerges. Spatial analysis encompasses an enormous range of techniques: proximity and containment queries, network analysis, spatial statistics, geostatistical interpolation, remote sensing analysis, spatial clustering, and increasingly machine learning methods that incorporate spatial relationships. The choice of technique should be driven by the question being asked.

Visualisation and communication converts analytical results into forms that can inform decisions. Effective spatial visualisation is genuinely difficult: the choice of map projection, colour scheme, classification method, and interactive controls all affect how spatial patterns are perceived and interpreted. The best spatial analysts are also skilled communicators of spatial uncertainty — they help decision-makers understand not just what the data shows, but how confident they should be in the analysis.

# Why Location Matters So Much Now

The strategic importance of spatial data intelligence has increased dramatically in the past decade, for reasons that go beyond the technical improvements in tools and infrastructure.

Location context enriches almost every business dataset. Customer transactions become more meaningful when you understand the spatial context in which they occur. Supply chain events become more interpretable when you can see them plotted along trade routes. Operational incidents become more actionable when you can identify spatial clusters that point to systemic causes. Adding the location dimension to existing data is often one of the highest-leverage analytical investments an organisation can make.

Physical-world problems are inherently spatial. Climate risk, logistics optimisation, infrastructure planning, epidemiology, land use management, emergency response — the problems that society most needs to solve have a spatial dimension that cannot be ignored. Spatial data intelligence is not a specialised technique for a narrow domain; it is a fundamental capability for reasoning about the physical world.

New data sources have created new possibilities. The combination of satellite imagery, GPS, IoT sensors, and social media has created a world in which the physical state of almost anything can be monitored, almost anywhere, at relatively low cost. Earth observation satellites now image every point on the globe multiple times per day. AIS transponders track the position of every large ship in real time. Mobile network data can characterise human mobility at population scale. These data sources are generating intelligence opportunities that simply did not exist a decade ago.

# Building Spatial Intelligence Capability

For organisations that want to build meaningful spatial data intelligence capability, the practical starting point is usually not the most sophisticated technology. It is a clear articulation of the questions that matter.

What spatial patterns in our data, if understood, would change how we make decisions? What location-based questions do we currently answer by intuition, convention, or incomplete information? Where would better spatial intelligence create competitive advantage, reduce cost, or improve outcomes for the people we serve?

Once the questions are clear, the technology choices follow naturally. The right database, the right analysis tools, the right visualisation approach — these are all determined by what you are trying to understand. Start with the question. Build the capability to answer it. Expand from there.

The organisations that are extracting the most value from spatial data today are not necessarily those with the largest GIS departments or the most expensive software. They are the ones that have learned to ask good spatial questions, and to build the data pipelines and analytical workflows to answer them at scale.


Related reading: Deriving Intelligence from Location Data: From Coordinates to Insight · The Future of Geointelligence: AI and Spatial Analytics · The Open Source Geospatial Stack