← Back to Tutorials
πŸ—ΊοΈGIS BasicsBeginner⏱️ 15 mins read

Coordinate Systems, Map Projections & Datums Explained

The Earth is a 3D sphere (roughly), but maps are 2D. To represent locations accurately, GIS relies on three interconnected concepts: **Coordinate Systems**, **Datums**, and **Map Projections**. Getting these right is critical β€” a wrong CRS can shift your entire map by kilometers. ---

πŸ“‹ Prerequisites

  • No prior GIS software required.
  • Curiosity about spatial data and maps.

Step-by-Step Instructions

1

Geographic vs Projected Coordinate Systems

### Geographic Coordinate System (GCS) - Uses **Latitude and Longitude** in degrees - Represents locations on the curved surface of the Earth (a sphere/ellipsoid) - Example: WGS 84 (EPSG:4326) β€” the most common GCS, used by GPS ### Projected Coordinate System (PCS) - Converts the curved Earth onto a **flat 2D surface** - Uses linear units like meters or feet - Needed for accurate area, distance, and direction measurements - Example: UTM (Universal Transverse Mercator) **Rule of thumb:** Use a Geographic CRS for storing/sharing global data, and a Projected CRS when you need to measure area or distance. ---

2

Understand Datums

A **Datum** defines the reference surface (a mathematical model of the Earth's shape) used to calculate coordinates. - **WGS 84** – Global standard, used by GPS and most modern data - **Local Datums** – Some countries use their own datum for higher local accuracy (e.g., Everest 1830 in parts of South Asia) **Why it matters:** The same location can have slightly different coordinates depending on the datum used β€” mismatched datums cause misalignment between layers. ---

3

Understand Map Projections

Since you can't flatten a sphere without distortion, every projection sacrifices something β€” shape, area, distance, or direction. | Projection Type | Preserves | Common Use | |---|---|---| | **Conformal** (e.g., Mercator) | Shape/angles | Navigation | | **Equal-Area** (e.g., Albers) | Area | Thematic mapping | | **Equidistant** | Distance from center | Distance measurement | | **UTM** | Balance of all (in narrow zones) | Most GIS work | ---

4

What Is UTM (Universal Transverse Mercator)?

UTM divides the Earth into **60 zones**, each 6Β° wide in longitude. Each zone has its own coordinate system in meters, which keeps distortion very low. - Example: `UTM Zone 43N` covers a specific longitude band in the Northern Hemisphere (e.g., parts of India) - To find your UTM zone: `Zone = floor((longitude + 180) / 6) + 1` ---

5

How to Check/Set CRS in QGIS

1. Open QGIS β†’ check the CRS shown in the bottom-right status bar 2. Right-click a layer β†’ **Properties β†’ Source** β†’ view its current CRS 3. To reproject: **Layer β†’ Save As** β†’ choose the target CRS from the dropdown 4. Project-wide CRS: **Project β†’ Properties β†’ CRS** ---

🧠 Quick Recap & Practice Questions

## Quick Recap

- GCS = degrees (lat/long); PCS = meters (flat grid)
- Datum defines the Earth model used for coordinates
- Projections always distort something β€” pick based on your need
- UTM is the most commonly used projected system in GIS work

---

## Practice Questions

1. Why can't you measure area accurately using a Geographic CRS?
2. What does "EPSG:4326" refer to?
3. How many UTM zones cover the globe?

---

*Next Tutorial: QGIS Installation & Interface Overview*