@turf/isolines
TypeScript icon, indicating that this package has built-in type declarations

7.1.0 • Public • Published

@turf/isolines

isolines

Takes a grid FeatureCollection of Point features with z-values and an array of value breaks and generates isolines.

Parameters

  • pointGrid FeatureCollection<Point> input points

  • breaks Array<number> values of zProperty where to draw isolines

  • options Object Optional parameters (optional, default {})

    • options.zProperty string the property name in points from which z-values will be pulled (optional, default 'elevation')
    • options.commonProperties Object GeoJSON properties passed to ALL isolines (optional, default {})
    • options.breaksProperties Array<Object> GeoJSON properties passed, in order, to the correspondent isoline; the breaks array will define the order in which the isolines are created (optional, default [])

Examples

// create a grid of points with random z-values in their properties
var extent = [0, 30, 20, 50];
var cellWidth = 100;
var pointGrid = turf.pointGrid(extent, cellWidth, {units: 'miles'});

for (var i = 0; i < pointGrid.features.length; i++) {
    pointGrid.features[i].properties.temperature = Math.random() * 10;
}
var breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];

var lines = turf.isolines(pointGrid, breaks, {zProperty: 'temperature'});

//addToMap
var addToMap = [lines];

Returns FeatureCollection<MultiLineString> a FeatureCollection of MultiLineString features representing isolines


This module is part of the Turfjs project, an open source module collection dedicated to geographic algorithms. It is maintained in the Turfjs/turf repository, where you can create PRs and issues.

Installation

Install this single module individually:

$ npm install @turf/isolines

Or install the all-encompassing @turf/turf module that includes all modules as functions:

$ npm install @turf/turf

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
3.5.2-alpha.d2c36ee70canary
7.1.097,183latest
7.1.0-alpha.704prerelease

Version History

VersionDownloads (Last 7 Days)Published
7.1.097,183
7.1.0-alpha.704
7.1.0-alpha.780
7.0.021,364
7.0.0-alpha.116843
7.0.0-alpha.115220
7.0.0-alpha.114212
7.0.0-alpha.11396
7.0.0-alpha.11131
7.0.0-alpha.11010
7.0.0-alpha.2253
7.0.0-alpha.17
7.0.0-alpha.0268
6.5.0224,034
6.4.0738
6.3.0900
6.2.07
6.2.0-alpha.330
6.2.0-alpha.28
6.2.0-alpha.17
6.2.0-alpha.07
5.1.5446,052
5.1.07
5.0.50
5.0.41
4.7.3225
4.7.10
4.7.00
4.6.10
4.6.00
4.5.27
4.5.10
4.4.00
4.3.024
4.2.00
4.1.00
4.0.20
4.0.10
4.0.01
3.14.2664
3.14.00
3.13.10
3.13.00
3.10.50
3.10.40
3.10.30
3.10.20
3.10.00
3.7.53
3.7.30
3.7.20
3.7.00
3.6.30
3.6.10
3.5.30
3.5.2-alpha.d2c36ee70
3.5.20
3.3.30
3.1.20
3.1.10
3.0.160
3.0.151

Package Sidebar

Install

npm i @turf/isolines

Weekly Downloads

793,287

Version

7.1.0

License

MIT

Unpacked Size

46.9 kB

Total Files

9

Last publish

Collaborators

  • smallsaucepan
  • morgan.herlocker
  • twelch
  • jamesmilneruk
  • rowanwins
  • tmcw
  • morganherlocker
  • tcql
  • mdfedderly