Area

The first few sections are review of high school geometry for computing the area of triangles, circles, and rectangles. Knowing these basics, it is possible to compute the area of more complex, geometries. Feel free to skim the first few sections.

of a Parallelogram

The formula to compute the area of a rectangle is:

A=bhA = bh, where

AA is the area, bb is the length of the base and hh is the height.

Supplemental Video

Area

Area of a Parallelogram

of a Triangle

The area of a triangle is computed as:

A=hbb2bhA = \dfrac{h_{b}b}{2}bh, where

AA is the area, hbh_{b} is the height and bb is the length of the base.

Supplemental Video

Area

of a Trapezoid

The formula for the area of a trapezoid is:

A=a+b2hA = \dfrac{a + b}{2}h, where

AA is the area, aa and bb are the bases of the trapezoid (parallel to each other), and hh is the height of the trapezoid.

Supplemental Video

Area

of Simple Polygons

Above, the method to compute the area for foundational geometries were described. In a GISystem, we often want to find the area for more complex geometries. For example, a parcel might not be a perfect trapezoid.

Please have a look at this video for a walkthrough on computing the area of a simple polygon.

Simple Polygons

In the example, enough information about line-segment length was provided that it was possible to compute the area. In a GIS, we might not want to have to step through all of the components of a polygon, compute the length of the line-segments, and then try to decompose a complex geometry into a simple geometry. Just writing that description, it sounds like a lot of (possibly inefficient) processing steps. A better way is Green's Theorem.

Please take a look at the link above and read through the blog post. Pay particular attention to the formulation and usage - the derivation is interesting, but not critical for our use cases.

of Polygons with Holes

By using Green's Theorem, it is also possible to compute the area of simple polygons with holes. I will leave it to you to think about how the theorem might need to be applied.

of Circles

To conclude, the area of a circle is:

A=πr2A = \pi r^{2}, where

AA is the area, π\pi is the constant pi, and rr is the radius of the circle.

Supplemental Video

Area