Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Calculates the sum value of a field for points within a set of polygons.
###Install
npm install turf-sum
###Parameters
name | description |
---|---|
polys | featurecollection of polygons |
points | featurecollection of points |
inField | field to map |
outField | new field |
###Usage
sum(polyFC, ptFC, inField, outField)
###Example
var size = require('turf-sum')
var point = require('turf-point')
var polygon = require('turf-polygon')
var featurecollection = require('turf-featurecollection')
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(1,1, {population: 500})
var pt2 = point(1,3, {population: 400})
var pt3 = point(14,2, {population: 600})
var pt4 = point(13,1, {population: 500})
var pt5 = point(19,7, {population: 200})
var ptFC = featurecollection([pt1, pt2, pt3, pt4, pt5])
var summed = sum(polyFC, ptFC, 'population', 'pop_sum')
console.log(summed.features[0].properties.pop_sum) // 900
console.log(summed.features[1].properties.pop_sum) // 1300
FAQs
turf sum module
The npm package turf-sum receives a total of 19 weekly downloads. As such, turf-sum popularity was classified as not popular.
We found that turf-sum demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.