Polygon Area Calculator from Coordinates

Enter lat/lon vertices to calculate the enclosed land area in hectares, acres, km², and m². Used by farmers, land surveyors, and urban planners. Paste coordinates directly from Google Earth.

Hectares, Acres & km² Paste Coordinates Any Shape Polygon Free — No Account
Share this tool

Polygon Vertices (Lat / Lon)

Paste Coordinates

One coordinate pair per line. Accepted: lat, lon decimal degrees, or 51°30'N, 0°7'W DMS format.

Quick Load:
Calculating area...

Enter your polygon vertices above or pick a Quick Load preset, then click Calculate Area.

Minimum 3 coordinate pairs. Supports up to 100 vertices.

How the Polygon Area Calculator Works

Enter lat/lon vertices → spherical excess formula → area in every unit.

COORDINATE VERTICES 1 2 3 4 5 6 spherical excess FORMULA Σ (lonₙ₊₁ − lonₙ₋₁) × sin(latₙ) × R² ÷ 2 R = 6,378,137 m (WGS84) |result| = m² Same as Turf.js @turf/area convert units OUTPUT 12.45 ha 30.76 acres 124,500 m² 0.1245 km² 1,339,932 ft² + centroid & perimeter

How to Calculate Land Area from GPS Coordinates

Calculating land area from GPS coordinates requires more than simple geometry. Because the Earth is not flat, using a flat Euclidean formula on lat/lon degrees produces errors that grow with polygon size. A 1-hectare field near the equator and a 1-hectare field at 60°N latitude span very different longitudinal distances even though their areas are identical.

This calculator uses the spherical excess formula — the same algorithm used by Turf.js and OpenLayers — which accounts for the curvature of the Earth. It treats the Earth as a sphere with the WGS84 semi-major axis (6,378,137 m) and sums the spherical angle contributions of each edge. The result is accurate to within 0.3% for polygons up to continental scale.

To use it: collect the latitude and longitude of each boundary corner of your land parcel in order (clockwise or counter-clockwise — the formula returns the absolute value). Enter them as decimal degrees, or paste them directly from Google Earth, QGIS, or a GPS unit.

What Is the Spherical Excess Formula for Polygon Area?

The spherical excess formula computes the area of a polygon projected onto a sphere. For each vertex i in the polygon, the contribution is:

area += (lon[i+1] − lon[i-1]) × sin(lat[i])

After summing all vertices (with the index wrapping around), the area in square metres is:

Area (m²) = |sum| × R² ÷ 2    where R = 6,378,137 m

The absolute value ensures a positive result regardless of whether vertices are listed clockwise or counter-clockwise. This is the same formula used by Turf.js, a widely-used open-source GIS library, making results comparable across platforms.

For very large polygons spanning more than a few degrees of latitude, a more accurate approach would use the WGS84 ellipsoid rather than a sphere, but for parcels up to 10,000 km² the spherical approximation introduces an error of less than 0.1%.

Area Units Explained: Hectares, Acres, and Square Kilometres

Different industries and regions use different area units. Farmers in the UK and Continental Europe work in hectares (ha); farmers and ranchers in the USA typically use acres; urban planners and GIS analysts often use square kilometres (km²) or square metres (m²). This calculator returns all four simultaneously so you never need to convert manually.

Aream²HectaresAcres
Tennis court2610.0260.064
Football pitch7,1400.7141.76
City block (NYC)80,0008.0019.8
Small farm400,00040.098.8
Average UK farm860,00086.0212
Hyde Park, London1,420,000142351
Central Park, NYC3,410,000341843

How Accurate Is GPS-Based Polygon Area Measurement?

The accuracy of this calculator depends entirely on the accuracy of your input coordinates, not the formula. The spherical excess algorithm is mathematically exact for a spherical Earth — the only approximation is that the Earth is not a perfect sphere (it is an oblate spheroid with a 0.3% polar flattening).

A standard consumer-grade GPS (phone or handheld unit) has a typical accuracy of 3–5 metres. For a 1-hectare field with a 400-metre perimeter, a 5-metre coordinate error translates to roughly a 1–2% area error. Survey-grade GNSS receivers with RTK correction achieve centimetre accuracy, reducing the area error to less than 0.01%.

Practical recommendations:

  • Walk the boundary with a GPS unit or phone, recording waypoints at each corner.
  • For large, irregular parcels, add extra waypoints along curved sections.
  • Average multiple GPS readings at the same corner to reduce noise.
  • Compare your result with the land registry or cadastral area as a sanity check.

Common Uses: Farming, Surveying, and Urban Planning

Land area calculation from coordinates is one of the most common tasks across multiple disciplines. Farmers use it to calculate seed rates, fertiliser quantities, and subsidy applications — the EU Common Agricultural Policy (CAP) payment is calculated per hectare, making accurate boundary measurement a financial requirement. A 2% error on a 200-hectare farm can mean thousands of euros in incorrect payments.

Land surveyors use polygon area to verify cadastral records, compute easement areas, and generate subdivision plans. Urban planners calculate plot ratios, floor area ratios (FAR), and green space percentages from polygon extents. Environmental scientists use it to measure deforestation extents, wetland coverage, and habitat patch sizes from satellite imagery.

Google Earth Pro has a built-in polygon area tool, but it requires the desktop application and saves data to KML files. This calculator lets you paste raw coordinates from any source — GPS exports, QGIS, ArcGIS attribute tables, or plain text — and instantly get all standard area units without any GIS software.

Frequently Asked Questions

How do I calculate the area of a field using GPS coordinates?

Walk the boundary of your field with a GPS device or smartphone app (Google Maps, Strava, or a dedicated survey app) and record the latitude and longitude at each corner. Enter those coordinates into this calculator in order, then click Calculate Area. The result is the enclosed area in hectares, acres, km², and m². Minimum 3 points are required.

What is the difference between hectares and acres?

One hectare (ha) equals 10,000 m² or 2.471 acres. One acre equals 4,046.86 m² or 0.405 ha. Hectares are the standard unit for agriculture in Europe, Australia, and most of the world. Acres are predominantly used in the USA, UK (historically), and Canada for farmland. Both refer to the same physical size — 1 ha is roughly a square 100 m × 100 m.

How accurate is polygon area calculated from lat/lon coordinates?

The formula is accurate to within 0.3% for any polygon smaller than a continent. The dominant source of error is your GPS coordinate accuracy — a consumer phone GPS has ±3–5 m precision, which translates to ±1–2% area error on a typical 1-hectare field. Survey-grade RTK-GNSS achieves centimetre precision and reduces area error to less than 0.01%.

Can I paste coordinates from Google Earth into this calculator?

Yes. In Google Earth, right-click a polygon or path and copy the coordinates. Switch to the Paste / Import tab in this calculator and paste them. The parser accepts decimal degrees (e.g., 51.5074, -0.1278) one per line. It also handles the DMS format (e.g., 51°30'26"N, 0°7'40"W).

Why does my polygon area differ from Google Earth's measurement?

Google Earth calculates area on the WGS84 ellipsoid, which is slightly more accurate than the spherical approximation used here. The difference is less than 0.3% for all but continental-scale polygons. More likely sources of discrepancy include: different vertex coordinates (rounded or approximated), the polygon boundary digitised differently, or units mismatch (ha vs acres).

What is the spherical excess formula and why is it used for geographic coordinates?

The spherical excess formula computes the area of a spherical polygon by summing the angular contribution of each edge on a sphere of radius R. It is used instead of the flat Shoelace formula because applying Euclidean geometry directly to lat/lon degrees produces wildly incorrect areas — a 1° × 1° square near the poles covers far less ground than a 1° × 1° square at the equator. The spherical formula accounts for this distortion at every latitude.

How do I find the GPS coordinates of my land boundary?

Several methods work depending on your precision needs. (1) Walk the boundary with a smartphone: Google Maps or What3Words will display your current coordinates — record them at each corner. (2) Use Google Earth: digitise the boundary on the satellite image, then export or copy the coordinates. (3) Use a handheld GPS receiver (Garmin, Trimble) with a waypoint at each corner. (4) For legal surveys, commission a licensed surveyor with RTK-GNSS equipment.