Land Area Calculator

Area From an Irregular Boundary, Not Just a Rectangle

Real parcels of land are rarely clean rectangles — property lines follow old field boundaries, rivers, and road curves. Once you have the boundary as a list of vertex coordinates, the shoelace formula computes the exact enclosed area of any simple polygon, no matter how irregular, without needing to break it into triangles by hand.

The Formula

Area = |Σ(x1 × y2 − x2 × y1)| ÷ 2, summed over each consecutive pair of vertices (x1,y1), (x2,y2)

The formula sums a cross-product term across each consecutive pair of vertices (wrapping back to the first point at the end), then halves the absolute value — a direct application of the Gauss shoelace method, so named because tracing the cross-multiplication pattern across a list of coordinates resembles lacing a shoe.

Worked Examples

Shoelace formula area for two sample polygons
VerticesShapeArea
(0,0); (4,0); (4,3); (0,3)Rectangle12 sq units
(0,0); (6,0); (3,4)Triangle12 sq units
Note: This is a planar formula — exact for coordinates on a flat projected grid (feet, meters, or any consistent local unit), but only an approximation if you plug in raw latitude/longitude degrees over a large area, since a degree of longitude doesn't represent a constant ground distance.

Where This Calculation Matters

  • Property and parcel surveys — computing the area enclosed by a set of surveyed boundary points.
  • Agricultural field measurement — calculating the area of an irregularly shaped field from GPS-walked or drone-mapped boundary points.
  • GIS polygon area calculations — the shoelace formula is the standard method used under the hood by most mapping and CAD software for computing polygon area.

How to Use This Calculator

  1. Enter the boundary vertex coordinates as x,y pairs, one per line or separated by semicolons — e.g. 0,0; 4,0; 4,3; 0,3.
  2. List at least 3 vertices in order around the polygon's perimeter.
  3. Select Calculate to get the enclosed area.

Related Calculations

Once you have an area, work out crowding with the Population Density Calculator, or scale a plotted site plan with the Map Scale Calculator.