Area Computations

Area Computations

Determining the area of a tract of land is one of the primary objectives of land surveying.

Area by Coordinates

Given the coordinates of the vertices of a closed traverse (x1,y1x_1, y_1), (x2,y2x_2, y_2), ..., (xn,ynx_n, y_n).

Formula (Shoelace Formula)

2A=(x1y2+x2y3++xny1)(y1x2+y2x3++ynx1)2A = |(x_1 y_2 + x_2 y_3 + \dots + x_n y_1) - (y_1 x_2 + y_2 x_3 + \dots + y_n x_1)|

Where:

  • xx: Eastings (Departures)
  • yy: Northings (Latitudes)

The vertices must be listed in consecutive order (clockwise or counter-clockwise).

Area by Double Meridian Distance (DMD)

This method is based on the balanced latitudes and departures of the traverse.

  1. DMD Rules:

    • DMD of the first course = Departure of the first course.
    • DMD of any other course = DMD of the preceding course + Departure of the preceding course + Departure of the course itself.
    • DMD of the last course = -Departure of the last course.
  2. Double Area (2A2A): 2A=Σ(DMD×Latitude)2A = \Sigma (\text{DMD} \times \text{Latitude})

  3. Area (AA): A=122AA = \frac{1}{2} |2A|

Area with Irregular Boundaries

Used when one side of the area is an irregular curve (e.g., a river bank). Offsets (hh) are measured from a traverse line at regular intervals (dd).

1. Trapezoidal Rule

Assumes the boundary between offsets is a straight line.

A=d(h1+hn2+h2+h3++hn1)A = d \left(\frac{h_1 + h_n}{2} + h_2 + h_3 + \dots + h_{n-1}\right)

Where:

  • dd: Common interval distance.
  • h1,hnh_1, h_n: End offsets.
  • nn: Number of offsets.

2. Simpson's 1/3 Rule

Assumes the boundary between offsets is a parabolic arc. More accurate than Trapezoidal Rule but requires an odd number of offsets (even number of intervals).

A=d3(h1+hn+4Σheven+2Σhodd)A = \frac{d}{3} \left(h_1 + h_n + 4\Sigma h_{even} + 2\Sigma h_{odd}\right)

Where:

  • hevenh_{even}: Sum of even offsets (h2,h4,h_2, h_4, \dots).
  • hoddh_{odd}: Sum of odd offsets (h3,h5,h_3, h_5, \dots).

Solved Problems

Step-by-Step Solution

0 of 2 Steps Completed
1