5

I am looking for sliver polygons (term used in geographic information systems for long thin 2D surfaces) and am using the following formula to identify which polygons have a smaller area to circumference ratio (a.k.a. the thinness ratio): $$ \frac{4 \cdot \pi \cdot \text{area}}{\text{perimeter}^2} $$ That much I understand. But what is not fully clear, is the $4 \cdot \pi$ bit and why the length has to be squared. Can someone explain this in simple terms?

  • 3
  • The length are squared so that the ratio is invariant under scaling. 2) The $4\pi$ is a normalization factor to set the ratio to $1$ for a circle. In fact, by isoperimetric inequality, all shapes has ratio $\le 1$ and $= 1$ when and only when the shape is a circle.
  • – achille hui Jun 23 '15 at 14:23
  • This has been cross-posted to http://gis.stackexchange.com/q/151939 – PolyGeo Jun 24 '15 at 09:51