Socket
Socket
Sign inDemoInstall

turf-average

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

turf-average

turf average module


Version published
Weekly downloads
66
decreased by-12%
Maintainers
1
Weekly downloads
 
Created
Source

turf-average

build status

Calculates the average value of a field for points within a set of polygons.

###Install

npm install turf-average

###Parameters

namedescription
polygonFCa FeatureCollection containing Polygons
pointFCa FeatureCollection containing Points
inFieldfield from the point features to be averaged
outFieldfield for the result on each polygon feature

###Usage

averaged = average(polygonFC, pointFC, inField, outField)

###Example

var average = require('turf-average')

var poly1 = polygon([[[0,0],[10,0],[10,10], [0,10]]])
var poly2 = polygon([[[10,0],[20,10],[20,20], [20,0]]])
var polyFC = featurecollection([poly1, poly2])
var pt1 = point(5,5, {population: 200})
var pt2 = point(1,3, {population: 600})
var pt3 = point(14,2, {population: 100})
var pt4 = point(13,1, {population: 200})
var pt5 = point(19,7, {population: 300})
var ptFC = featurecollection([pt1, pt2, pt3, pt4, pt5])

var averaged = average(polyFC, ptFC, 'population', 'pop_avg')

console.log(averaged.features[0].properties.pop_avg) // 400
console.log(averaged.features[1].properties.pop_avg) // 200

Keywords

FAQs

Package last updated on 09 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc