May 20, 2026

GIS Professionals Guide to Coordinate Systems and Formats

For GIS professionals, coordinate systems are foundational knowledge. This guide covers format selection, datum considerations, and practical tools for multi-format workflows.

GIS professionals deal with coordinate formats daily — importing data from field devices, aligning layers from different sources, and publishing results to web maps that expect specific formats. Here's a practical reference for multi-format GIS workflows.

Format Selection by Use Case

  • Database storage: Decimal Degrees in a float/double column, or use PostGIS geometry types
  • Web maps (Leaflet, Mapbox, Google Maps API): DD — all web mapping APIs expect lat/lon as decimal numbers
  • Field data collection (paper forms, GPS units): UTM or DMS depending on agency standard
  • Proximity indexing (Redis, Elasticsearch): Geohash
  • Sharing with military or emergency services: MGRS

Datum: The Invisible Problem

The biggest source of silent errors in GIS is datum mismatch. WGS84 and NAD83 differ by less than 2 metres in the US (negligible for most work), but WGS84 and NAD27 differ by up to 100 metres — enough to materially affect cadastral and engineering work. Always record the datum with every dataset and transform explicitly when combining sources.

Batch Conversion Approaches

For converting large datasets between formats:

  • Python: the pyproj library handles all major projections and datums
  • R: sf package with st_transform()
  • QGIS: built-in "Reproject Layer" tool
  • PostGIS: ST_Transform(geom, srid)

For one-off conversions during analysis, our coordinate converter handles all seven formats simultaneously without any setup. See also our full guide for GIS professionals.