Land Parcel Area from Coordinates (Shoelace Formula)
When a parcel boundary is defined by surveyed corner coordinates rather than simple rectangular dimensions, its area is computed with the shoelace (surveyor’s) formula — a direct algebraic sum over the coordinate pairs that works for any simple polygon, regular or irregular.This is exactly how legal descriptions and plat area figures are actually computed from a closed traverse, so it is a routine step in subdivision platting, easement area calculations, and boundary surveys.
For a closed polygon the area is A = ½|Σ(x_i·y_{i+1} − x_{i+1}·y_i)|, summed around the boundary and taken as an absolute value. where (x_1,y_1) through (x_4,y_4) are the surveyed corner coordinates of the parcel, taken in order around its boundary.
The shoelace sum cross-multiplies consecutive coordinate pairs around the closed boundary; taking half the absolute value of the total gives the enclosed area regardless of parcel shape.
Results
A result of about 1088 m² is a plausible small urban lot area for a four-sided parcel of this size. The method generalizes directly to polygons with more corners by extending the same cross-multiply-and-sum pattern, which is why it is the standard hand and software method for computing area from a closed traverse.