turf-combine
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "turf-combine", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "turf combine module", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
turf-combine | ||
============ | ||
[![build status](https://secure.travis-ci.org/Turfjs/turf-combine.png)](http://travis-ci.org/Turfjs/turf-combine) | ||
Combines feature collection of point, linestring, or polygon features into multipoint, multilinestring, or multipolygon features. | ||
```js | ||
var combine = require('turf-combine') | ||
var point = require('turf-point') | ||
var featurecollection = require('turf-featurecollection') | ||
var pt1 = point(50, 1) | ||
var pt2 = point(100, 101) | ||
var fc = featurecollection([pt1, pt2]) | ||
var combined = combine(fc) | ||
console.log(combined) | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5729
7
20