@turf/isobands
Advanced tools
Comparing version 6.5.0 to 7.0.0-alpha.0
{ | ||
"name": "@turf/isobands", | ||
"version": "6.5.0", | ||
"version": "7.0.0-alpha.0", | ||
"description": "turf isobands module", | ||
@@ -40,21 +40,22 @@ "author": "Turf Authors", | ||
}, | ||
"types": "index.d.ts", | ||
"types": "dist/js/index.d.ts", | ||
"sideEffects": false, | ||
"files": [ | ||
"dist", | ||
"index.d.ts" | ||
"dist" | ||
], | ||
"scripts": { | ||
"bench": "node -r esm bench.js", | ||
"build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json", | ||
"bench": "ts-node bench.js", | ||
"build": "npm-run-all build:*", | ||
"build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json", | ||
"build:js": "tsc", | ||
"docs": "node ../../scripts/generate-readmes", | ||
"test": "npm-run-all test:*", | ||
"test:tape": "node -r esm test.js" | ||
"test:tape": "ts-node -r esm test.js" | ||
}, | ||
"devDependencies": { | ||
"@turf/envelope": "^6.5.0", | ||
"@turf/point-grid": "^6.5.0", | ||
"@turf/random": "^6.5.0", | ||
"@turf/rhumb-destination": "^6.5.0", | ||
"@turf/truncate": "^6.5.0", | ||
"@turf/envelope": "^7.0.0-alpha.0", | ||
"@turf/point-grid": "^7.0.0-alpha.0", | ||
"@turf/random": "^7.0.0-alpha.0", | ||
"@turf/rhumb-destination": "^7.0.0-alpha.0", | ||
"@turf/truncate": "^7.0.0-alpha.0", | ||
"benchmark": "*", | ||
@@ -67,15 +68,18 @@ "chroma-js": "*", | ||
"tape": "*", | ||
"ts-node": "*", | ||
"tslint": "*", | ||
"typescript": "*", | ||
"write-json-file": "*" | ||
}, | ||
"dependencies": { | ||
"@turf/area": "^6.5.0", | ||
"@turf/bbox": "^6.5.0", | ||
"@turf/boolean-point-in-polygon": "^6.5.0", | ||
"@turf/explode": "^6.5.0", | ||
"@turf/helpers": "^6.5.0", | ||
"@turf/invariant": "^6.5.0", | ||
"@turf/meta": "^6.5.0", | ||
"object-assign": "*" | ||
"@turf/area": "^7.0.0-alpha.0", | ||
"@turf/bbox": "^7.0.0-alpha.0", | ||
"@turf/boolean-point-in-polygon": "^7.0.0-alpha.0", | ||
"@turf/explode": "^7.0.0-alpha.0", | ||
"@turf/helpers": "^7.0.0-alpha.0", | ||
"@turf/invariant": "^7.0.0-alpha.0", | ||
"@turf/meta": "^7.0.0-alpha.0", | ||
"tslib": "^2.3.0" | ||
}, | ||
"gitHead": "5375941072b90d489389db22b43bfe809d5e451e" | ||
"gitHead": "0edc4c491b999e5ace770a61e1cf549f7c004189" | ||
} |
@@ -10,13 +10,14 @@ # @turf/isobands | ||
**Parameters** | ||
### Parameters | ||
- `pointGrid` **[FeatureCollection][3]<[Point][4]>** input points - must be square or rectangular | ||
- `breaks` **[Array][5]<[number][6]>** where to draw contours | ||
- `options` **[Object][7]** options on output (optional, default `{}`) | ||
- `options.zProperty` **[string][8]** the property name in `points` from which z-values will be pulled (optional, default `'elevation'`) | ||
- `options.commonProperties` **[Object][7]** GeoJSON properties passed to ALL isobands (optional, default `{}`) | ||
- `options.breaksProperties` **[Array][5]<[Object][7]>** GeoJSON properties passed, in order, to the correspondent isoband (order defined by breaks) (optional, default `[]`) | ||
* `pointGrid` **[FeatureCollection][3]<[Point][4]>** input points - must be square or rectangular | ||
* `breaks` **[Array][5]<[number][6]>** where to draw contours | ||
* `options` **[Object][7]** options on output (optional, default `{}`) | ||
Returns **[FeatureCollection][3]<[MultiPolygon][9]>** a FeatureCollection of [MultiPolygon][10] features representing isobands | ||
* `options.zProperty` **[string][8]** the property name in `points` from which z-values will be pulled (optional, default `'elevation'`) | ||
* `options.commonProperties` **[Object][7]** GeoJSON properties passed to ALL isobands (optional, default `{}`) | ||
* `options.breaksProperties` **[Array][5]<[Object][7]>** GeoJSON properties passed, in order, to the correspondent isoband (order defined by breaks) (optional, default `[]`) | ||
Returns **[FeatureCollection][3]<[MultiPolygon][9]>** a FeatureCollection of [MultiPolygon][10] features representing isobands | ||
[1]: https://tools.ietf.org/html/rfc7946#section-3.3 | ||
@@ -23,0 +24,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Copyleft License
License(Experimental) Copyleft license information was found.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
Non-permissive License
License(Experimental) A license not known to be considered permissive was found.
Found 1 instance in 1 package
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
298083
13
7633
0
66
16
3
70
1
1
+ Addedtslib@^2.3.0
+ Added@turf/area@7.2.0(transitive)
+ Added@turf/bbox@7.2.0(transitive)
+ Added@turf/boolean-point-in-polygon@7.2.0(transitive)
+ Added@turf/explode@7.2.0(transitive)
+ Added@turf/helpers@7.2.0(transitive)
+ Added@turf/invariant@7.2.0(transitive)
+ Added@turf/meta@7.2.0(transitive)
+ Added@types/geojson@7946.0.16(transitive)
+ Addedpoint-in-polygon-hao@1.2.4(transitive)
+ Addedrobust-predicates@3.0.2(transitive)
+ Addedtslib@2.8.1(transitive)
- Removedobject-assign@*
- Removed@turf/area@6.5.0(transitive)
- Removed@turf/bbox@6.5.0(transitive)
- Removed@turf/boolean-point-in-polygon@6.5.0(transitive)
- Removed@turf/explode@6.5.0(transitive)
- Removed@turf/helpers@6.5.0(transitive)
- Removed@turf/invariant@6.5.0(transitive)
- Removed@turf/meta@6.5.0(transitive)
- Removedobject-assign@4.1.1(transitive)
Updated@turf/area@^7.0.0-alpha.0
Updated@turf/bbox@^7.0.0-alpha.0
Updated@turf/explode@^7.0.0-alpha.0
Updated@turf/helpers@^7.0.0-alpha.0
Updated@turf/meta@^7.0.0-alpha.0