turf-tin

WebJar for turf-tin

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

turf-tin
Last Version

Last Version

3.0.12
Release Date

Release Date

Type

Type

jar
Description

Description

turf-tin
WebJar for turf-tin
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/turf-junkyard/turf-tin

Download turf-tin

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/turf-tin/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>turf-tin</artifactId>
    <version>3.0.12</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/turf-tin/
implementation 'org.webjars.npm:turf-tin:3.0.12'
// https://jarcasting.com/artifacts/org.webjars.npm/turf-tin/
implementation ("org.webjars.npm:turf-tin:3.0.12")
'org.webjars.npm:turf-tin:jar:3.0.12'
<dependency org="org.webjars.npm" name="turf-tin" rev="3.0.12">
  <artifact name="turf-tin" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='turf-tin', version='3.0.12')
)
libraryDependencies += "org.webjars.npm" % "turf-tin" % "3.0.12"
[org.webjars.npm/turf-tin "3.0.12"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : turf-helpers jar [3.0.12,4)

Project Modules

There are no modules declared in this project.

turf-tin

build status

turf tin module

turf.tin(points, propertyName)

Takes a set of Point|points and the name of a z-value property and creates a Triangulated Irregular Network, or a TIN for short, returned as a collection of Polygons. These are often used for developing elevation contour maps or stepped heat visualizations.

This triangulates the points, as well as adds properties called a, b, and c representing the value of the given propertyName at each of the points that represent the corners of the triangle.

Parameters

parameter type description
points FeatureCollection.<Point> input points
propertyName String optional: name of the property from which to pull z values This is optional: if not given, then there will be no extra data added to the derived triangles.

Example

// generate some random point data
var points = turf.random('points', 30, {
  bbox: [50, 30, 70, 50]
});
//=points
// add a random property to each point between 0 and 9
for (var i = 0; i < points.features.length; i++) {
  points.features[i].properties.z = ~~(Math.random() * 9);
}
var tin = turf.tin(points, 'z')
for (var i = 0; i < tin.features.length; i++) {
  var properties  = tin.features[i].properties;
  // roughly turn the properties of each
  // triangle into a fill color
  // so we can visualize the result
  properties.fill = '#' + properties.a +
    properties.b + properties.c;
}
//=tin

Returns FeatureCollection.<Polygon>, TIN output

Installation

Requires nodejs.

$ npm install turf-tin

Tests

$ npm test
org.webjars.npm

deprecated turf modules: do not use or reference, for redirects only

turf is now a monorepo: all turf modules are in Turfjs/turf

Versions

Version
3.0.12