@turf/collect
Advanced tools
Comparing version 5.0.4 to 5.1.0
{ | ||
"name": "@turf/collect", | ||
"version": "5.0.4", | ||
"version": "5.1.0", | ||
"description": "turf collect module", | ||
"main": "main", | ||
"module": "index", | ||
"jsnext:main": "index", | ||
"main": "main.js", | ||
"module": "main.mjs", | ||
"types": "index.d.ts", | ||
@@ -12,3 +11,4 @@ "files": [ | ||
"index.d.ts", | ||
"main.js" | ||
"main.js", | ||
"main.mjs" | ||
], | ||
@@ -18,3 +18,4 @@ "scripts": { | ||
"test": "node -r @std/esm test.js", | ||
"bench": "node -r @std/esm bench.js" | ||
"bench": "node -r @std/esm bench.js", | ||
"docs": "node ../../scripts/generate-readmes" | ||
}, | ||
@@ -46,8 +47,9 @@ "repository": { | ||
"rollup": "*", | ||
"rollup-plugin-buble": "*", | ||
"tape": "*" | ||
}, | ||
"dependencies": { | ||
"@turf/bbox": "^5.0.4", | ||
"@turf/boolean-point-in-polygon": "^5.0.4", | ||
"@turf/helpers": "^5.0.4", | ||
"@turf/bbox": "^5.1.0", | ||
"@turf/boolean-point-in-polygon": "^5.1.0", | ||
"@turf/helpers": "^5.1.0", | ||
"rbush": "^2.0.1" | ||
@@ -54,0 +56,0 @@ }, |
@@ -15,4 +15,4 @@ # @turf/collect | ||
- `polygons` **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[Polygon](http://geojson.org/geojson-spec.html#polygon)>** polygons with values on which to aggregate | ||
- `points` **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[Point](http://geojson.org/geojson-spec.html#point)>** points to be aggregated | ||
- `polygons` **[FeatureCollection](https://tools.ietf.org/html/rfc7946#section-3.3)<[Polygon](https://tools.ietf.org/html/rfc7946#section-3.1.6)>** polygons with values on which to aggregate | ||
- `points` **[FeatureCollection](https://tools.ietf.org/html/rfc7946#section-3.3)<[Point](https://tools.ietf.org/html/rfc7946#section-3.1.2)>** points to be aggregated | ||
- `inProperty` **[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)** property to be nested from | ||
@@ -41,3 +41,3 @@ - `outProperty` **[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)** property to be nested into | ||
Returns **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[Polygon](http://geojson.org/geojson-spec.html#polygon)>** polygons with properties listed based on `outField` | ||
Returns **[FeatureCollection](https://tools.ietf.org/html/rfc7946#section-3.3)<[Polygon](https://tools.ietf.org/html/rfc7946#section-3.1.6)>** polygons with properties listed based on `outField` | ||
@@ -44,0 +44,0 @@ <!-- This file is automatically generated. Please don't edit it directly: |
13470
7
199
5
Updated@turf/bbox@^5.1.0
Updated@turf/helpers@^5.1.0