Land Area Survey Calculator

Enter coordinate points (X, Y) to compute land area using the Shoelace formula. Minimum 3 points required.

Format: X,Y per line (e.g. 0,0 then 100,0 etc.)

Total Area
--
Acres
--
Hectares
--
Square Meters
--
Perimeter
--
Points Parsed
--

How the Shoelace Formula Works

The Shoelace formula computes the area of a simple polygon given the coordinates of its vertices. For n vertices, the area is:

A = 0.5 * |sum(x_i * y_(i+1) - x_(i+1) * y_i)|

This calculator also computes the perimeter by summing the distance between consecutive points and converts the area into multiple units including acres, hectares, and square meters.

Related Calculators