Skip to content

Instantly share code, notes, and snippets.

@jgimbel
Last active September 21, 2016 19:15
Show Gist options
  • Save jgimbel/a7875c581d70f8b65cac4024f866b232 to your computer and use it in GitHub Desktop.
Save jgimbel/a7875c581d70f8b65cac4024f866b232 to your computer and use it in GitHub Desktop.
//Groups of polygons
geosjon
.features
//get area of polygons
.map(area)
//get the average area of polygons
.reduce(
(average, value, size) => (size * average + value) / (size + 1),
0
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment