1.0.2 • Published 7 years ago

spatial-index v1.0.2

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

spatial-index

Spatial index using KD-tree for finding neighbor search.

API

index = spatialIndex(points, metric, dimensions, accuracy)

points - array of points
metric - distance function between two points
dimensions - list of props representing each dimension e.g.:
Array like point 0.3, 0.5 -> 0, 1
Object like point { x: 0.3, y: 0.5 } -> 'x', 'y'
accuracy - precision below which points are considered equal

const spatialIndex = require('spatial-index')
const Vec2 = require('pex-math/Vec2')

const points = [[0, 0], [1, 0], [2, 1], [1, 0], [0, 0], [0, 2]]

const index = spatialIndex(points, Vec2.distance, [0, 1], 0)

index.getUniquePoints()

let uniquePoints = index.getUniquePoints()
//[[0, 0], [1, 0], [2, 1], [0, 2]]

index.nearestPoint(p)

let nearest = index.nearestPoint([0.5, 0.7])
//[0, 1]

index.includePoint(p)

index.includePoint([3, 1])

index.indexOf(p)

let index = index.indexOf([0, 2])
//3

let index = index.indexOf([2, 0])
//-1
1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago