What is the difference between geospatial and geographic data?
Geographic data is spatial data that has an explicit reference to Earth’s surface, using latitude and longitude coordinates within a geographic coordinate system like WGS 84. Geospatial data is the broader category — it includes geographic data but also encompasses projected coordinates, indoor mapping, 3D models, raster grids, spatial indexes, and web mapping tiles. The key rule: all geographic data is geospatial, but not all geospatial data is geographic.
What is WGS 84 and why is it important in GIS?
WGS 84 (World Geodetic System 1984) is the most widely used geographic coordinate system. It is the reference system used by GPS satellites, which means virtually all GPS data is natively in WGS 84. It defines positions on the Earth’s surface using latitude and longitude in degrees. Understanding WGS 84 is essential because it serves as the common reference frame for exchanging geographic data globally — but it is not suitable for direct distance or area calculations without applying geodetic formulas or reprojecting to a projected coordinate system.
When should I use a geographic coordinate system vs a projected coordinate system?
Use a geographic coordinate system (latitude/longitude) for storing global datasets, exchanging data between systems, and working with GPS data. Use a projected coordinate system (UTM, State Plane, national grids) when you need to calculate distances, areas, or perform spatial analysis that requires accurate metric measurements. The general pattern: store and exchange in geographic, analyse and measure in projected.
What happens if I calculate distance using geographic coordinates?
If you apply simple Euclidean distance formulas to geographic coordinates (degrees of latitude and longitude), the result will be in degrees — not metres or kilometres — and will be geometrically incorrect because the Earth’s surface is curved, not flat. One degree of longitude varies in distance depending on latitude (approximately 111 km at the equator, zero at the poles). To get accurate distances from geographic coordinates, you must either use geodetic distance formulas (Haversine, Vincenty) or reproject the data to a local projected coordinate system first.
Is satellite imagery geographic or geospatial data?
Satellite imagery is both. It is geographic because it captures Earth’s surface and is georeferenced using geographic coordinates. It is geospatial because it is typically stored, processed, and analysed using GIS technologies and is often reprojected into projected coordinate systems for analysis. The raw imagery is geographic; the derived products (classified rasters, spatial indexes, tiled web services) are geospatial in the broader sense.
What is a spatial index and is it geographic or geospatial?
A spatial index is a data structure that optimises the performance of spatial queries — finding which features are within a bounding box, which polygons contain a point, or which lines intersect a region. Spatial indexes (R-trees, quadtrees, geohashes) are geospatial constructs — they operate on coordinate data but are abstract structures that exist independently of any specific Earth reference. They are a core example of geospatial data that is not inherently geographic.
Can indoor mapping be considered geographic data?
Indoor mapping occupies a grey area. If the indoor map is georeferenced — meaning the building’s position on Earth is known and the interior coordinates can be transformed to latitude/longitude — it has a geographic component. But the interior coordinate system itself is typically a local engineering grid (metres from a building origin) rather than a geographic coordinate system. Most practitioners would classify indoor mapping as geospatial data with an optional geographic reference, rather than as inherently geographic data.
What is a datum and how does it relate to this distinction?
A datum is a mathematical model of the Earth’s shape and size that defines how coordinates map to physical locations. WGS 84 is both a datum and a coordinate system. Different datums (NAD 27, NAD 83, ETRS 89) model the Earth slightly differently, which means the same latitude/longitude values represent different physical locations depending on which datum is in use. Datum awareness is critical when combining geographic data from different sources — a 200-metre positional error can result from using the wrong datum. Geospatial data in projected coordinate systems also has an underlying datum, but the datum choice is more visible and commonly managed in geographic coordinate workflows.
What are web map tiles — geographic or geospatial?
Web map tiles are pre-rendered images of spatial data, organised into a grid (tile matrix) at multiple zoom levels for efficient delivery over the web. The most common tiling scheme (Web Mercator / EPSG:3857) is technically a projected coordinate system derived from a geographic datum, but the tiles themselves are geospatial constructs — they are grid-indexed images served through standardised protocols (WMTS, XYZ, vector tiles). They represent geographic information but are delivered and consumed as geospatial data structures.
Does this distinction affect how I should design a spatial database?
Yes. Most spatial databases (PostGIS, SQL Server Spatial, Oracle Spatial) distinguish between geography types (which use geodetic calculations on a sphere/ellipsoid) and geometry types (which use planar calculations in projected or local coordinates). Choosing the wrong type affects query accuracy, spatial join correctness, and index performance. If your application operates globally, use the geography type. If it operates within a defined local area and needs fast planar calculations, use the geometry type with an appropriate projected coordinate system. Getting this wrong at the database design stage is expensive to fix later.