Say I have a bunch of radar charts, how do I compare them?
What I want to do is 'rank' a bunch of spider charts by their overall 'coverage'. Each chart is a Pentagonal spider chart.
My first guess was to compare areas, since that's what coverage is, but there isn't an easy formula to do that.
One I know of is $$ S = \frac{p \star r} 2 $$
where $ r $ is the radius of an inscribed circle and $ p $ is the perimeter of the pentagon.
The problem with this is you cannot really do (or at least I don't know how to do) that with raw data like this
1 0.1
2 0.98
3 0.53
4 0.01
5 0.6
where the first column is the 'vertex' of the chart and the second column is the point to draw on the chart. Points will always be between 0 and 1.
Something like this
So I was wondering, is there a better way of comparing spider/radar charts?

Following script (should) calculates area of the coverage given points on lines from origin of circumcircle to vertices.
The idea is to calculate areas of each triangles in each quadrant and returning the summation.
This is not meant as a complete answer. Just as a 'helper' script.