@turf/isolines
Advanced tools
Comparing version 3.0.15 to 3.0.16
{ | ||
"name": "@turf/isolines", | ||
"version": "3.0.15", | ||
"version": "3.0.16", | ||
"description": "turf isolines module", | ||
@@ -11,3 +11,3 @@ "main": "index.js", | ||
"type": "git", | ||
"url": "https://github.com/Turfjs/turf-isolines.git" | ||
"url": "git://github.com/Turfjs/turf.git" | ||
}, | ||
@@ -25,5 +25,5 @@ "keywords": [ | ||
"bugs": { | ||
"url": "https://github.com/Turfjs/turf-isolines/issues" | ||
"url": "https://github.com/Turfjs/turf/issues" | ||
}, | ||
"homepage": "https://github.com/Turfjs/turf-isolines", | ||
"homepage": "https://github.com/Turfjs/turf", | ||
"devDependencies": { | ||
@@ -34,10 +34,10 @@ "benchmark": "^1.0.0", | ||
"dependencies": { | ||
"@turf/bbox": "^3.0.15", | ||
"@turf/bbox": "^3.0.16", | ||
"turf-grid": "1.0.1", | ||
"@turf/inside": "^3.0.15", | ||
"@turf/helpers": "^3.0.15", | ||
"@turf/planepoint": "^3.0.15", | ||
"@turf/square": "^3.0.15", | ||
"@turf/tin": "^3.0.15" | ||
"@turf/inside": "^3.0.16", | ||
"@turf/helpers": "^3.0.16", | ||
"@turf/planepoint": "^3.0.16", | ||
"@turf/square": "^3.0.16", | ||
"@turf/tin": "^3.0.16" | ||
} | ||
} |
@@ -1,6 +0,6 @@ | ||
# turf-isolines | ||
# @turf/isolines | ||
# isolines | ||
Takes [points](Point) with z-values and an array of | ||
Takes [points](http://geojson.org/geojson-spec.html#point) with z-values and an array of | ||
value breaks and generates [isolines](http://en.wikipedia.org/wiki/Isoline). | ||
@@ -10,3 +10,3 @@ | ||
- `points` **FeatureCollection<Point>** input points | ||
- `points` **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[Point](http://geojson.org/geojson-spec.html#point)>** input points | ||
- `z` **[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)** the property name in `points` from which z-values will be pulled | ||
@@ -32,3 +32,3 @@ - `resolution` **[number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)** resolution of the underlying grid | ||
Returns **FeatureCollection<LineString>** isolines | ||
Returns **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[LineString](http://geojson.org/geojson-spec.html#linestring)>** isolines | ||
@@ -47,3 +47,3 @@ --- | ||
```sh | ||
$ npm install turf-isolines | ||
$ npm install @turf/isolines | ||
``` | ||
@@ -54,3 +54,3 @@ | ||
```sh | ||
$ npm install turf | ||
$ npm install @turf/turf | ||
``` |
28088
Updated@turf/bbox@^3.0.16
Updated@turf/helpers@^3.0.16
Updated@turf/inside@^3.0.16
Updated@turf/planepoint@^3.0.16
Updated@turf/square@^3.0.16
Updated@turf/tin@^3.0.16