Skip to content
transform

State Plane Coordinate System: A Plain-Language Guide

6 min read

What State Plane is, how its zones are organised, why each state has its own projection, and how to pick the right EPSG code for your project.

State Plane is the United States' answer to the question "how do I do surveying in metric coordinates without UTM's distortion?". It's older than UTM (1933 vs 1947) and is built into how most U.S. states administer cadastre, engineering and infrastructure.

The idea

UTM's 6° zones limit distortion to about 1/2500. For high-precision local work — building a bridge, laying out a property boundary — that's not tight enough. State Plane subdivides each U.S. state into one or more *narrow* zones, each tuned for the state's geometry, with distortion held under 1/10,000 (10 cm per kilometre).

A state shaped east-west (e.g. Tennessee, Kentucky) gets a Lambert Conformal Conic projection. A state shaped north-south (e.g. New Jersey, Vermont) gets Transverse Mercator. Long thin states like Florida and California are split into multiple zones to keep distortion under control.

Datums and realisations

State Plane evolved through three datum eras:

  • NAD27 — the original 1933 zones on Clarke 1866 ellipsoid. Coordinates were in U.S. survey feet.
  • NAD83 (1986) — re-defined zones on GRS 80, mostly in metres, sometimes in U.S. survey feet, sometimes in international feet (depending on state legislation).
  • NAD83(2011) — the modern realisation, used for sub-decimetre work.

Each combination of zone × datum × unit gets its own EPSG code. That's why there are *thousands* of State Plane codes in the EPSG registry.

How to pick a code

  1. Identify the state and the relevant zone. The U.S. NGS publishes the zone boundaries; many states have only one zone, others have up to ten.
  2. Pick the datum. For new work, NAD83(2011) (EPSG:6318) is the source datum; for legacy data, the generic NAD83 realisation may be specified.
  3. Pick the unit. Some states' legal CRS is in survey feet (Texas, California, much of the Mid-Atlantic), others in metres (mostly the Plains and Mountain West). Use what your state law and contracts specify.

For example:

  • California Zone 5 (NAD83), survey feet: EPSG:2229
  • California Zone 5 (NAD83), international feet: EPSG:2879
  • California Zone 5 (NAD83), metres: EPSG:26945
  • California Zone 5 (NAD83(HARN)), survey feet: EPSG:2767

A single survey job can have all four versions of the same coordinates — get the EPSG code right.

Survey foot vs international foot

This is the deepest trap in U.S. State Plane.

  • U.S. survey foot = 1200/3937 metres ≈ 0.3048006096 m
  • International foot = 0.3048 m exactly

The difference is two parts per million — about 6 mm per kilometre. Trivial at street scale, devastating at state scale: at 100 km from origin, the offset is 60 cm. The U.S. National Geodetic Survey deprecated the survey foot in 2022 and recommends international feet for all new work, but state laws and engineering contracts often still specify survey feet.

Always confirm which foot your data uses.

When to use State Plane vs UTM

State Plane is the right choice for: - Cadastre and property boundaries. - High-precision engineering and construction within a single state. - Surveying records where the state has a legal mandate.

UTM is the right choice for: - Cross-state projects. - Federal datasets covering multiple states. - GIS workflows that integrate with international data.

A practical workflow

A typical surveyor's project might:

  1. Capture GPS positions in WGS 84 (or NAD83(2011) if using CORS).
  2. Convert to the legally required State Plane zone for cadastral filing.
  3. Hand the State Plane coordinates to engineers, who compute lengths and bearings within the local zone.
  4. Reproject to Web Mercator (EPSG:3857) for the public-facing project map.

Each step uses the right CRS for its purpose; converting between them is a matter of using the right EPSG codes in your GIS.

Related coordinate reference systems

Frequently asked questions

Why does each state have its own coordinate system?
State Plane subdivides each U.S. state into narrow zones tuned to the state's geometry, with distortion held under 1/10,000. UTM's 6° zones limit distortion to only 1/2500 — fine for general mapping, not tight enough for cadastre or engineering.
What's the difference between U.S. survey foot and international foot?
U.S. survey foot = 1200/3937 m ≈ 0.3048006 m. International foot = 0.3048 m exactly. The 2 ppm difference accumulates to ~60 cm over 100 km. NGS deprecated the survey foot in 2022; check which one your state law specifies.
Should I use State Plane or UTM for my project?
State Plane for cadastre and high-precision local work within a single state. UTM for federal datasets, multi-state projects, or international integration.